Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 188179
b: refs/heads/master
c: 57e148b
h: refs/heads/master
i:
  188177: 7de62e0
  188175: 1928c82
v: v3
  • Loading branch information
Bruno Prémont authored and Richard Purdie committed Mar 16, 2010
1 parent 48ec0ea commit d01b25e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a4ebb780e194e8751dc22deeabcddd3fdc8f18f0
refs/heads/master: 57e148b6a975980944f4466ccb669b1d02dfc6a1
2 changes: 1 addition & 1 deletion trunk/drivers/video/backlight/adx_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ static int adx_backlight_get_brightness(struct backlight_device *bldev)
return brightness & 0xff;
}

static int adx_backlight_check_fb(struct fb_info *fb)
static int adx_backlight_check_fb(struct backlight_device *bldev, struct fb_info *fb)
{
return 1;
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/video/backlight/backlight.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ static int fb_notifier_callback(struct notifier_block *self,
mutex_lock(&bd->ops_lock);
if (bd->ops)
if (!bd->ops->check_fb ||
bd->ops->check_fb(evdata->info)) {
bd->ops->check_fb(bd, evdata->info)) {
bd->props.fb_blank = *(int *)evdata->data;
if (bd->props.fb_blank == FB_BLANK_UNBLANK)
bd->props.state &= ~BL_CORE_FBBLANK;
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/linux/backlight.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ struct backlight_ops {
int (*get_brightness)(struct backlight_device *);
/* Check if given framebuffer device is the one bound to this backlight;
return 0 if not, !=0 if it is. If NULL, backlight always matches the fb. */
int (*check_fb)(struct fb_info *);
int (*check_fb)(struct backlight_device *, struct fb_info *);
};

/* This structure defines all the properties of a backlight */
Expand Down

0 comments on commit d01b25e

Please sign in to comment.