From: Thomas Zimmermann Date: Tue, 13 Jun 2023 11:06:43 +0000 (+0200) Subject: fbdev/atyfb: Use hardware device as backlight parent X-Git-Tag: v6.6.17~3937^2~23^2~109 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dab320deaf575aada06e3597ec30a774d27cfa74;p=platform%2Fkernel%2Flinux-rpi.git fbdev/atyfb: Use hardware device as backlight parent Use the hardware device in struct fb_info.device as parent of the backlight device. Aligns the driver with the rest of the codebase and prepares fbdev for making struct fb_info.dev optional. Signed-off-by: Thomas Zimmermann Reviewed-by: Javier Martinez Canillas Reviewed-by: Sam Ravnborg Link: https://patchwork.freedesktop.org/patch/msgid/20230613110953.24176-9-tzimmermann@suse.de --- diff --git a/drivers/video/fbdev/aty/atyfb_base.c b/drivers/video/fbdev/aty/atyfb_base.c index 51504fe..e1602e3 100644 --- a/drivers/video/fbdev/aty/atyfb_base.c +++ b/drivers/video/fbdev/aty/atyfb_base.c @@ -2255,7 +2255,7 @@ static void aty_bl_init(struct atyfb_par *par) memset(&props, 0, sizeof(struct backlight_properties)); props.type = BACKLIGHT_RAW; props.max_brightness = FB_BACKLIGHT_LEVELS - 1; - bd = backlight_device_register(name, info->dev, par, &aty_bl_data, + bd = backlight_device_register(name, info->device, par, &aty_bl_data, &props); if (IS_ERR(bd)) { info->bl_dev = NULL;