diff options
author | David Brownell <david-b@pacbell.net> | 2007-05-29 18:07:10 -0400 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2007-07-15 20:16:36 -0400 |
commit | fa9133c24c4115523c1381b67fdd74fd864ac0ea (patch) | |
tree | 2dd15f9e64e81b968542d5f559ed64e86a24566c /drivers/video/backlight/Kconfig | |
parent | 8f41958bdd577731f7411c9605cfaa9db6766809 (diff) |
backlight: Fix order of Kconfig entries
Switch the order of LCD_CLASS_DEVICE and BACKLIGHT_CLASS_DEVICE,
so that it's possible to insert LCD devices without borking the
dependency displays of xconfig and other config tools.
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Richard Purdie <rpurdie@rpsys.net>
Diffstat (limited to 'drivers/video/backlight/Kconfig')
-rw-r--r-- | drivers/video/backlight/Kconfig | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/drivers/video/backlight/Kconfig b/drivers/video/backlight/Kconfig index fbef663fc057..2580f5fa2486 100644 --- a/drivers/video/backlight/Kconfig +++ b/drivers/video/backlight/Kconfig | |||
@@ -8,26 +8,32 @@ menuconfig BACKLIGHT_LCD_SUPPORT | |||
8 | Enable this to be able to choose the drivers for controlling the | 8 | Enable this to be able to choose the drivers for controlling the |
9 | backlight and the LCD panel on some platforms, for example on PDAs. | 9 | backlight and the LCD panel on some platforms, for example on PDAs. |
10 | 10 | ||
11 | config BACKLIGHT_CLASS_DEVICE | 11 | # |
12 | tristate "Lowlevel Backlight controls" | 12 | # LCD |
13 | # | ||
14 | config LCD_CLASS_DEVICE | ||
15 | tristate "Lowlevel LCD controls" | ||
13 | depends on BACKLIGHT_LCD_SUPPORT | 16 | depends on BACKLIGHT_LCD_SUPPORT |
14 | default m | 17 | default m |
15 | help | 18 | help |
16 | This framework adds support for low-level control of the LCD | 19 | This framework adds support for low-level control of LCD. |
17 | backlight. This includes support for brightness and power. | 20 | Some framebuffer devices connect to platform-specific LCD modules |
21 | in order to have a platform-specific way to control the flat panel | ||
22 | (contrast and applying power to the LCD (not to the backlight!)). | ||
18 | 23 | ||
19 | To have support for your specific LCD panel you will have to | 24 | To have support for your specific LCD panel you will have to |
20 | select the proper drivers which depend on this option. | 25 | select the proper drivers which depend on this option. |
21 | 26 | ||
22 | config LCD_CLASS_DEVICE | 27 | # |
23 | tristate "Lowlevel LCD controls" | 28 | # Backlight |
29 | # | ||
30 | config BACKLIGHT_CLASS_DEVICE | ||
31 | tristate "Lowlevel Backlight controls" | ||
24 | depends on BACKLIGHT_LCD_SUPPORT | 32 | depends on BACKLIGHT_LCD_SUPPORT |
25 | default m | 33 | default m |
26 | help | 34 | help |
27 | This framework adds support for low-level control of LCD. | 35 | This framework adds support for low-level control of the LCD |
28 | Some framebuffer devices connect to platform-specific LCD modules | 36 | backlight. This includes support for brightness and power. |
29 | in order to have a platform-specific way to control the flat panel | ||
30 | (contrast and applying power to the LCD (not to the backlight!)). | ||
31 | 37 | ||
32 | To have support for your specific LCD panel you will have to | 38 | To have support for your specific LCD panel you will have to |
33 | select the proper drivers which depend on this option. | 39 | select the proper drivers which depend on this option. |