]> git.dujemihanovic.xyz Git - linux.git/commitdiff
fbdev/nvidiafb: Use hardware device as backlight parent
authorThomas Zimmermann <tzimmermann@suse.de>
Tue, 13 Jun 2023 11:06:54 +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.

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Antonino Daplas <adaplas@gmail.com>
Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20230613110953.24176-20-tzimmermann@suse.de
drivers/video/fbdev/nvidia/nv_backlight.c

index 503a7a683855aaaf8610d6216d5b4dd6d036d305..160da9c50a52c95357f66510cf44b12c6ad2e5cc 100644 (file)
@@ -98,7 +98,7 @@ void nvidia_bl_init(struct nvidia_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, &nvidia_bl_ops,
+       bd = backlight_device_register(name, info->device, par, &nvidia_bl_ops,
                                       &props);
        if (IS_ERR(bd)) {
                info->bl_dev = NULL;