]> git.dujemihanovic.xyz Git - linux.git/commitdiff
fbdev/radeonfb: Use hardware device as backlight parent
authorThomas Zimmermann <tzimmermann@suse.de>
Tue, 13 Jun 2023 11:06:57 +0000 (13:06 +0200)
committerThomas Zimmermann <tzimmermann@suse.de>
Tue, 27 Jun 2023 07:58:49 +0000 (09:58 +0200)
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.

v2:
* add Cc: tag (Dan)

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20230613110953.24176-23-tzimmermann@suse.de
drivers/video/fbdev/aty/radeon_backlight.c

index 427adc838f77e20eb3b37f75c1907a30b9785df2..23a38c3f3977e6b765701a2a2d2dce9ad8b31bb4 100644 (file)
@@ -147,7 +147,7 @@ void radeonfb_bl_init(struct radeonfb_info *rinfo)
        memset(&props, 0, sizeof(struct backlight_properties));
        props.type = BACKLIGHT_RAW;
        props.max_brightness = FB_BACKLIGHT_LEVELS - 1;
-       bd = backlight_device_register(name, rinfo->info->dev, pdata,
+       bd = backlight_device_register(name, rinfo->info->device, pdata,
                                       &radeon_bl_data, &props);
        if (IS_ERR(bd)) {
                rinfo->info->bl_dev = NULL;