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>

authored by David Brownell and committed by Richard Purdie fa9133c2 8f41958b

+17 -11
+17 -11
drivers/video/backlight/Kconfig
··· 8 8 Enable this to be able to choose the drivers for controlling the 9 9 backlight and the LCD panel on some platforms, for example on PDAs. 10 10 11 - config BACKLIGHT_CLASS_DEVICE 12 - tristate "Lowlevel Backlight controls" 13 - depends on BACKLIGHT_LCD_SUPPORT 14 - default m 15 - help 16 - This framework adds support for low-level control of the LCD 17 - backlight. This includes support for brightness and power. 18 - 19 - To have support for your specific LCD panel you will have to 20 - select the proper drivers which depend on this option. 21 - 11 + # 12 + # LCD 13 + # 22 14 config LCD_CLASS_DEVICE 23 15 tristate "Lowlevel LCD controls" 24 16 depends on BACKLIGHT_LCD_SUPPORT ··· 20 28 Some framebuffer devices connect to platform-specific LCD modules 21 29 in order to have a platform-specific way to control the flat panel 22 30 (contrast and applying power to the LCD (not to the backlight!)). 31 + 32 + To have support for your specific LCD panel you will have to 33 + select the proper drivers which depend on this option. 34 + 35 + # 36 + # Backlight 37 + # 38 + config BACKLIGHT_CLASS_DEVICE 39 + tristate "Lowlevel Backlight controls" 40 + depends on BACKLIGHT_LCD_SUPPORT 41 + default m 42 + help 43 + This framework adds support for low-level control of the LCD 44 + backlight. This includes support for brightness and power. 23 45 24 46 To have support for your specific LCD panel you will have to 25 47 select the proper drivers which depend on this option.