diff options
author | Dmitry Baryshkov <dbaryshkov@gmail.com> | 2008-09-13 12:58:51 -0400 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2008-10-20 19:19:49 -0400 |
commit | fbd1b17b43b8783a5408ec18c293dd8ebdc7e2cd (patch) | |
tree | 4895da5d017d54da64d62b737d2fa8807b07058d /drivers/video/backlight/Kconfig | |
parent | 6da0b38f4433fb0f24615449d7966471b6e5eae0 (diff) |
backlight: add support for Sharp SL-6000 LCD and backlight drivers
On Sharp SL-6000 lcd/backlight is a bit complex, so add two drivers
one for lcd-driving chip, other one for dac regulating the backlight
LEDS.
Signed-off-by: Dmitry Baryshkov <dbaryshkov@gmail.com>
Cc: Richard Purdie <rpurdie@rpsys.net>
Diffstat (limited to 'drivers/video/backlight/Kconfig')
-rw-r--r-- | drivers/video/backlight/Kconfig | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/drivers/video/backlight/Kconfig b/drivers/video/backlight/Kconfig index c72a13562954..10b701f1089a 100644 --- a/drivers/video/backlight/Kconfig +++ b/drivers/video/backlight/Kconfig | |||
@@ -75,6 +75,15 @@ config LCD_PLATFORM | |||
75 | This driver provides a platform-device registered LCD power | 75 | This driver provides a platform-device registered LCD power |
76 | control interface. | 76 | control interface. |
77 | 77 | ||
78 | config LCD_TOSA | ||
79 | tristate "Sharp SL-6000 LCD Driver" | ||
80 | depends on LCD_CLASS_DEVICE && SPI | ||
81 | depends on MACH_TOSA | ||
82 | default n | ||
83 | help | ||
84 | If you have an Sharp SL-6000 Zaurus say Y to enable a driver | ||
85 | for its LCD. | ||
86 | |||
78 | # | 87 | # |
79 | # Backlight | 88 | # Backlight |
80 | # | 89 | # |
@@ -179,3 +188,12 @@ config BACKLIGHT_MBP_NVIDIA | |||
179 | If you have an Apple Macbook Pro with Nvidia graphics hardware say Y | 188 | If you have an Apple Macbook Pro with Nvidia graphics hardware say Y |
180 | to enable a driver for its backlight | 189 | to enable a driver for its backlight |
181 | 190 | ||
191 | config BACKLIGHT_TOSA | ||
192 | tristate "Sharp SL-6000 Backlight Driver" | ||
193 | depends on BACKLIGHT_CLASS_DEVICE && I2C | ||
194 | depends on MACH_TOSA && LCD_TOSA | ||
195 | default n | ||
196 | help | ||
197 | If you have an Sharp SL-6000 Zaurus say Y to enable a driver | ||
198 | for its backlight | ||
199 | |||