Displaying 4 results from an estimated 4 matches for "dell_init".
Did you mean:
deb_init
2016 Aug 04
2
[Intel-gfx] [PATCH] backlight: Avoid double fbcon backlight handling
...gt; }
>> diff --git a/drivers/platform/x86/dell-laptop.c b/drivers/platform/x86/dell-laptop.c
>> index 2c2f02b2e08a..57712a970f8d 100644
>> --- a/drivers/platform/x86/dell-laptop.c
>> +++ b/drivers/platform/x86/dell-laptop.c
>> @@ -2035,7 +2035,8 @@ static int __init dell_init(void)
>> &platform_device->dev,
>> NULL,
>> &dell_ops,
>> - &props);
>> + &props,
>> + BACKLIGHT_REGISTER_FB_CLIENT);
>>
>> if (IS_ERR(dell_backlight_device)) {
>&g...
2016 Jul 12
0
[Intel-gfx] [PATCH] backlight: Avoid double fbcon backlight handling
...(compalbl_device);
> }
> diff --git a/drivers/platform/x86/dell-laptop.c b/drivers/platform/x86/dell-laptop.c
> index 2c2f02b2e08a..57712a970f8d 100644
> --- a/drivers/platform/x86/dell-laptop.c
> +++ b/drivers/platform/x86/dell-laptop.c
> @@ -2035,7 +2035,8 @@ static int __init dell_init(void)
> &platform_device->dev,
> NULL,
> &dell_ops,
> - &props);
> + &props,
> + BACKLIGHT_REGISTER_FB_CLIENT);
>
> if (IS_ERR(dell_backlight_device)) {
> ret = PTR_ERR(dell_backlight_...
2016 Jun 30
6
[PATCH] backlight: Avoid double fbcon backlight handling
...bl_device))
return PTR_ERR(compalbl_device);
}
diff --git a/drivers/platform/x86/dell-laptop.c b/drivers/platform/x86/dell-laptop.c
index 2c2f02b2e08a..57712a970f8d 100644
--- a/drivers/platform/x86/dell-laptop.c
+++ b/drivers/platform/x86/dell-laptop.c
@@ -2035,7 +2035,8 @@ static int __init dell_init(void)
&platform_device->dev,
NULL,
&dell_ops,
- &props);
+ &props,
+ BACKLIGHT_REGISTER_FB_CLIENT);
if (IS_ERR(dell_backlight_device)) {
ret = PTR_ERR(dell_backlight_device);
diff --git a/drivers/platform/x86/ee...
2016 Aug 04
1
[Intel-gfx] [PATCH] backlight: Avoid double fbcon backlight handling
...f --git a/drivers/platform/x86/dell-laptop.c b/drivers/platform/x86/dell-laptop.c
> >> index 2c2f02b2e08a..57712a970f8d 100644
> >> --- a/drivers/platform/x86/dell-laptop.c
> >> +++ b/drivers/platform/x86/dell-laptop.c
> >> @@ -2035,7 +2035,8 @@ static int __init dell_init(void)
> >> &platform_device->dev,
> >> NULL,
> >> &dell_ops,
> >> - &props);
> >> + &props,
> >> + BACKLIGHT_REGISTER_FB_CLIENT);
> >>
> >> if...