backlight: tosa: use bl_get_data instead of dev_get_drvdata
Use the wrapper function for getting the driver data using backlight_device instead of using dev_get_drvdata with &bd->dev, so we can directly pass a struct backlight_device. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
4d89c3b389
commit
42109b3cf6
|
@ -54,7 +54,7 @@ static void tosa_bl_set_backlight(struct tosa_bl_data *data, int brightness)
|
|||
static int tosa_bl_update_status(struct backlight_device *dev)
|
||||
{
|
||||
struct backlight_properties *props = &dev->props;
|
||||
struct tosa_bl_data *data = dev_get_drvdata(&dev->dev);
|
||||
struct tosa_bl_data *data = bl_get_data(dev);
|
||||
int power = max(props->power, props->fb_blank);
|
||||
int brightness = props->brightness;
|
||||
|
||||
|
|
Loading…
Reference in New Issue