Skip to content

Commit

Permalink
Merge branch 'for-linus' of git://git.o-hand.com/linux-rpurdie-backlight
Browse files Browse the repository at this point in the history
* 'for-linus' of git://git.o-hand.com/linux-rpurdie-backlight:
  backlight: mbp_nvidia_bl - add two more MacBookPro variants
  backlight: Pass device through notify callback in the pwm driver
  backlight: PTR_ERR return of wrong pointer in cr_backlight_probe()
  backlight: Constify struct backlight_ops
  backlight/thinkpad-acpi: issue backlight class events

Fix up trivial conflicts in thinkpad-acpi support (backlight support
already merged earlier).
  • Loading branch information
Linus Torvalds committed Dec 17, 2009
2 parents 9209e4b + f7a297a commit 4e46aa0
Show file tree
Hide file tree
Showing 20 changed files with 50 additions and 29 deletions.
2 changes: 1 addition & 1 deletion drivers/video/backlight/adp5520_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ static int adp5520_bl_get_brightness(struct backlight_device *bl)
return error ? data->current_brightness : reg_val;
}

static struct backlight_ops adp5520_bl_ops = {
static const struct backlight_ops adp5520_bl_ops = {
.update_status = adp5520_bl_update_status,
.get_brightness = adp5520_bl_get_brightness,
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/video/backlight/adx_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ static int adx_backlight_check_fb(struct fb_info *fb)
return 1;
}

static struct backlight_ops adx_backlight_ops = {
static const struct backlight_ops adx_backlight_ops = {
.options = 0,
.update_status = adx_backlight_update_status,
.get_brightness = adx_backlight_get_brightness,
Expand Down
2 changes: 1 addition & 1 deletion drivers/video/backlight/atmel-pwm-bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ static int atmel_pwm_bl_init_pwm(struct atmel_pwm_bl *pwmbl)
return pwm_channel_enable(&pwmbl->pwmc);
}

static struct backlight_ops atmel_pwm_bl_ops = {
static const struct backlight_ops atmel_pwm_bl_ops = {
.get_brightness = atmel_pwm_bl_get_intensity,
.update_status = atmel_pwm_bl_set_intensity,
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/video/backlight/backlight.c
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ EXPORT_SYMBOL(backlight_force_update);
* ERR_PTR() or a pointer to the newly allocated device.
*/
struct backlight_device *backlight_device_register(const char *name,
struct device *parent, void *devdata, struct backlight_ops *ops)
struct device *parent, void *devdata, const struct backlight_ops *ops)
{
struct backlight_device *new_bd;
int rc;
Expand Down
2 changes: 1 addition & 1 deletion drivers/video/backlight/corgi_lcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ void corgi_lcd_limit_intensity(int limit)
}
EXPORT_SYMBOL(corgi_lcd_limit_intensity);

static struct backlight_ops corgi_bl_ops = {
static const struct backlight_ops corgi_bl_ops = {
.get_brightness = corgi_bl_get_intensity,
.update_status = corgi_bl_update_status,
};
Expand Down
4 changes: 2 additions & 2 deletions drivers/video/backlight/cr_bllcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ static int cr_backlight_get_intensity(struct backlight_device *bd)
return intensity;
}

static struct backlight_ops cr_backlight_ops = {
static const struct backlight_ops cr_backlight_ops = {
.get_brightness = cr_backlight_get_intensity,
.update_status = cr_backlight_set_intensity,
};
Expand Down Expand Up @@ -201,7 +201,7 @@ static int cr_backlight_probe(struct platform_device *pdev)
if (IS_ERR(ldp)) {
backlight_device_unregister(bdp);
pci_dev_put(lpc_dev);
return PTR_ERR(bdp);
return PTR_ERR(ldp);
}

pci_read_config_dword(lpc_dev, CRVML_REG_GPIOBAR,
Expand Down
2 changes: 1 addition & 1 deletion drivers/video/backlight/da903x_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ static int da903x_backlight_get_brightness(struct backlight_device *bl)
return data->current_brightness;
}

static struct backlight_ops da903x_backlight_ops = {
static const struct backlight_ops da903x_backlight_ops = {
.update_status = da903x_backlight_update_status,
.get_brightness = da903x_backlight_get_brightness,
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/video/backlight/generic_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ void corgibl_limit_intensity(int limit)
}
EXPORT_SYMBOL(corgibl_limit_intensity);

static struct backlight_ops genericbl_ops = {
static const struct backlight_ops genericbl_ops = {
.options = BL_CORE_SUSPENDRESUME,
.get_brightness = genericbl_get_intensity,
.update_status = genericbl_send_intensity,
Expand Down
2 changes: 1 addition & 1 deletion drivers/video/backlight/hp680_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ static int hp680bl_get_intensity(struct backlight_device *bd)
return current_intensity;
}

static struct backlight_ops hp680bl_ops = {
static const struct backlight_ops hp680bl_ops = {
.get_brightness = hp680bl_get_intensity,
.update_status = hp680bl_set_intensity,
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/video/backlight/jornada720_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ static int jornada_bl_update_status(struct backlight_device *bd)
return ret;
}

static struct backlight_ops jornada_bl_ops = {
static const struct backlight_ops jornada_bl_ops = {
.get_brightness = jornada_bl_get_brightness,
.update_status = jornada_bl_update_status,
.options = BL_CORE_SUSPENDRESUME,
Expand Down
2 changes: 1 addition & 1 deletion drivers/video/backlight/kb3886_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ static int kb3886bl_get_intensity(struct backlight_device *bd)
return kb3886bl_intensity;
}

static struct backlight_ops kb3886bl_ops = {
static const struct backlight_ops kb3886bl_ops = {
.get_brightness = kb3886bl_get_intensity,
.update_status = kb3886bl_send_intensity,
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/video/backlight/locomolcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ static int locomolcd_get_intensity(struct backlight_device *bd)
return current_intensity;
}

static struct backlight_ops locomobl_data = {
static const struct backlight_ops locomobl_data = {
.get_brightness = locomolcd_get_intensity,
.update_status = locomolcd_set_intensity,
};
Expand Down
20 changes: 19 additions & 1 deletion drivers/video/backlight/mbp_nvidia_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ struct dmi_match_data {
unsigned long iostart;
unsigned long iolen;
/* Backlight operations structure. */
struct backlight_ops backlight_ops;
const struct backlight_ops backlight_ops;
};

/* Module parameters. */
Expand Down Expand Up @@ -218,6 +218,24 @@ static const struct dmi_system_id __initdata mbp_device_table[] = {
},
.driver_data = (void *)&nvidia_chipset_data,
},
{
.callback = mbp_dmi_match,
.ident = "MacBookPro 5,3",
.matches = {
DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."),
DMI_MATCH(DMI_PRODUCT_NAME, "MacBookPro5,3"),
},
.driver_data = (void *)&nvidia_chipset_data,
},
{
.callback = mbp_dmi_match,
.ident = "MacBookPro 5,4",
.matches = {
DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."),
DMI_MATCH(DMI_PRODUCT_NAME, "MacBookPro5,4"),
},
.driver_data = (void *)&nvidia_chipset_data,
},
{
.callback = mbp_dmi_match,
.ident = "MacBookPro 5,5",
Expand Down
2 changes: 1 addition & 1 deletion drivers/video/backlight/omap1_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ static int omapbl_get_intensity(struct backlight_device *dev)
return bl->current_intensity;
}

static struct backlight_ops omapbl_ops = {
static const struct backlight_ops omapbl_ops = {
.get_brightness = omapbl_get_intensity,
.update_status = omapbl_update_status,
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/video/backlight/progear_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ static int progearbl_get_intensity(struct backlight_device *bd)
return intensity - HW_LEVEL_MIN;
}

static struct backlight_ops progearbl_ops = {
static const struct backlight_ops progearbl_ops = {
.get_brightness = progearbl_get_intensity,
.update_status = progearbl_set_intensity,
};
Expand Down
11 changes: 7 additions & 4 deletions drivers/video/backlight/pwm_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@

struct pwm_bl_data {
struct pwm_device *pwm;
struct device *dev;
unsigned int period;
int (*notify)(int brightness);
int (*notify)(struct device *,
int brightness);
};

static int pwm_backlight_update_status(struct backlight_device *bl)
Expand All @@ -39,7 +41,7 @@ static int pwm_backlight_update_status(struct backlight_device *bl)
brightness = 0;

if (pb->notify)
brightness = pb->notify(brightness);
brightness = pb->notify(pb->dev, brightness);

if (brightness == 0) {
pwm_config(pb->pwm, 0, pb->period);
Expand All @@ -56,7 +58,7 @@ static int pwm_backlight_get_brightness(struct backlight_device *bl)
return bl->props.brightness;
}

static struct backlight_ops pwm_backlight_ops = {
static const struct backlight_ops pwm_backlight_ops = {
.update_status = pwm_backlight_update_status,
.get_brightness = pwm_backlight_get_brightness,
};
Expand Down Expand Up @@ -88,6 +90,7 @@ static int pwm_backlight_probe(struct platform_device *pdev)

pb->period = data->pwm_period_ns;
pb->notify = data->notify;
pb->dev = &pdev->dev;

pb->pwm = pwm_request(data->pwm_id, "backlight");
if (IS_ERR(pb->pwm)) {
Expand Down Expand Up @@ -146,7 +149,7 @@ static int pwm_backlight_suspend(struct platform_device *pdev,
struct pwm_bl_data *pb = dev_get_drvdata(&bl->dev);

if (pb->notify)
pb->notify(0);
pb->notify(pb->dev, 0);
pwm_config(pb->pwm, 0, pb->period);
pwm_disable(pb->pwm);
return 0;
Expand Down
2 changes: 1 addition & 1 deletion drivers/video/backlight/tosa_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ static int tosa_bl_get_brightness(struct backlight_device *dev)
return props->brightness;
}

static struct backlight_ops bl_ops = {
static const struct backlight_ops bl_ops = {
.get_brightness = tosa_bl_get_brightness,
.update_status = tosa_bl_update_status,
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/video/backlight/wm831x_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ static int wm831x_backlight_get_brightness(struct backlight_device *bl)
return data->current_brightness;
}

static struct backlight_ops wm831x_backlight_ops = {
static const struct backlight_ops wm831x_backlight_ops = {
.options = BL_CORE_SUSPENDRESUME,
.update_status = wm831x_backlight_update_status,
.get_brightness = wm831x_backlight_get_brightness,
Expand Down
12 changes: 6 additions & 6 deletions include/linux/backlight.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,18 @@ struct backlight_device;
struct fb_info;

struct backlight_ops {
unsigned int options;
const unsigned int options;

#define BL_CORE_SUSPENDRESUME (1 << 0)

/* Notify the backlight driver some property has changed */
int (*update_status)(struct backlight_device *);
int (* const update_status)(struct backlight_device *);
/* Return the current backlight brightness (accounting for power,
fb_blank etc.) */
int (*get_brightness)(struct backlight_device *);
int (* const 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 (* const check_fb)(struct fb_info *);
};

/* This structure defines all the properties of a backlight */
Expand Down Expand Up @@ -86,7 +86,7 @@ struct backlight_device {
registered this device has been unloaded, and if class_get_devdata()
points to something in the body of that driver, it is also invalid. */
struct mutex ops_lock;
struct backlight_ops *ops;
const struct backlight_ops *ops;

/* The framebuffer notifier block */
struct notifier_block fb_notif;
Expand All @@ -103,7 +103,7 @@ static inline void backlight_update_status(struct backlight_device *bd)
}

extern struct backlight_device *backlight_device_register(const char *name,
struct device *dev, void *devdata, struct backlight_ops *ops);
struct device *dev, void *devdata, const struct backlight_ops *ops);
extern void backlight_device_unregister(struct backlight_device *bd);
extern void backlight_force_update(struct backlight_device *bd,
enum backlight_update_reason reason);
Expand Down
2 changes: 1 addition & 1 deletion include/linux/pwm_backlight.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ struct platform_pwm_backlight_data {
unsigned int dft_brightness;
unsigned int pwm_period_ns;
int (*init)(struct device *dev);
int (*notify)(int brightness);
int (*notify)(struct device *dev, int brightness);
void (*exit)(struct device *dev);
};

Expand Down

0 comments on commit 4e46aa0

Please sign in to comment.