search for: bl_device

Displaying 4 results from an estimated 4 matches for "bl_device".

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 PTR_E...
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/dell...
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_devi...