Displaying 5 results from an estimated 5 matches for "bl_dev".
2024 Feb 13
2
[PATCH v2 3/8] fbdev: Do not include <linux/backlight.h> in header
Forward declare struct backlight_device and remove the include
statement.
Signed-off-by: Thomas Zimmermann <tzimmermann at suse.de>
Reviewed-by: Jani Nikula <jani.nikula at intel.com>
---
include/linux/fb.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/linux/fb.h b/include/linux/fb.h
index 2ce2f5c2fca9a..7380d959c5d53 100644
--- a/include/linux/fb.h
+++
2016 Aug 04
2
[Intel-gfx] [PATCH] backlight: Avoid double fbcon backlight handling
...rm/x86/compal-laptop.c b/drivers/platform/x86/compal-laptop.c
>> index e1c2b6d4b24a..9a675d3b6fe5 100644
>> --- a/drivers/platform/x86/compal-laptop.c
>> +++ b/drivers/platform/x86/compal-laptop.c
>> @@ -1008,7 +1008,8 @@ static int __init compal_init(void)
>> compalbl_device = backlight_device_register(DRIVER_NAME,
>> NULL, NULL,
>> &compalbl_ops,
>> - &props);
>> + &props,
>> + BACKLIGHT_REGISTER_FB_CLIENT);
>> if (IS_ERR(compalbl_device))
>> return PT...
2016 Jul 12
0
[Intel-gfx] [PATCH] backlight: Avoid double fbcon backlight handling
...git a/drivers/platform/x86/compal-laptop.c b/drivers/platform/x86/compal-laptop.c
> index e1c2b6d4b24a..9a675d3b6fe5 100644
> --- a/drivers/platform/x86/compal-laptop.c
> +++ b/drivers/platform/x86/compal-laptop.c
> @@ -1008,7 +1008,8 @@ static int __init compal_init(void)
> compalbl_device = backlight_device_register(DRIVER_NAME,
> NULL, NULL,
> &compalbl_ops,
> - &props);
> + &props,
> + BACKLIGHT_REGISTER_FB_CLIENT);
> if (IS_ERR(compalbl_device))
> return PTR_ERR(compalbl_device);
>...
2016 Jun 30
6
[PATCH] backlight: Avoid double fbcon backlight handling
...;
goto out_bd;
diff --git a/drivers/platform/x86/compal-laptop.c b/drivers/platform/x86/compal-laptop.c
index e1c2b6d4b24a..9a675d3b6fe5 100644
--- a/drivers/platform/x86/compal-laptop.c
+++ b/drivers/platform/x86/compal-laptop.c
@@ -1008,7 +1008,8 @@ static int __init compal_init(void)
compalbl_device = backlight_device_register(DRIVER_NAME,
NULL, NULL,
&compalbl_ops,
- &props);
+ &props,
+ BACKLIGHT_REGISTER_FB_CLIENT);
if (IS_ERR(compalbl_device))
return PTR_ERR(compalbl_device);
}
diff --git a/drivers/platform/x86/d...
2016 Aug 04
1
[Intel-gfx] [PATCH] backlight: Avoid double fbcon backlight handling
...drivers/platform/x86/compal-laptop.c
> >> index e1c2b6d4b24a..9a675d3b6fe5 100644
> >> --- a/drivers/platform/x86/compal-laptop.c
> >> +++ b/drivers/platform/x86/compal-laptop.c
> >> @@ -1008,7 +1008,8 @@ static int __init compal_init(void)
> >> compalbl_device = backlight_device_register(DRIVER_NAME,
> >> NULL, NULL,
> >> &compalbl_ops,
> >> - &props);
> >> + &props,
> >> + BACKLIGHT_REGISTER_FB_CLIENT);
> >> if (IS_ERR(compalbl_d...