diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /drivers/video/backlight/Kconfig |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'drivers/video/backlight/Kconfig')
-rw-r--r-- | drivers/video/backlight/Kconfig | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/drivers/video/backlight/Kconfig b/drivers/video/backlight/Kconfig new file mode 100644 index 000000000000..996d543d6609 --- /dev/null +++ b/drivers/video/backlight/Kconfig | |||
@@ -0,0 +1,52 @@ | |||
1 | # | ||
2 | # Backlight & LCD drivers configuration | ||
3 | # | ||
4 | |||
5 | menuconfig BACKLIGHT_LCD_SUPPORT | ||
6 | bool "Backlight & LCD device support" | ||
7 | help | ||
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. | ||
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 | |||
22 | config BACKLIGHT_DEVICE | ||
23 | bool | ||
24 | depends on BACKLIGHT_CLASS_DEVICE | ||
25 | default y | ||
26 | |||
27 | config LCD_CLASS_DEVICE | ||
28 | tristate "Lowlevel LCD controls" | ||
29 | depends on BACKLIGHT_LCD_SUPPORT | ||
30 | default m | ||
31 | help | ||
32 | This framework adds support for low-level control of LCD. | ||
33 | Some framebuffer devices connect to platform-specific LCD modules | ||
34 | in order to have a platform-specific way to control the flat panel | ||
35 | (contrast and applying power to the LCD (not to the backlight!)). | ||
36 | |||
37 | To have support for your specific LCD panel you will have to | ||
38 | select the proper drivers which depend on this option. | ||
39 | |||
40 | config LCD_DEVICE | ||
41 | bool | ||
42 | depends on LCD_CLASS_DEVICE | ||
43 | default y | ||
44 | |||
45 | config BACKLIGHT_CORGI | ||
46 | tristate "Sharp Corgi Backlight Driver (SL-C7xx Series)" | ||
47 | depends on BACKLIGHT_DEVICE && PXA_SHARPSL | ||
48 | default y | ||
49 | help | ||
50 | If you have a Sharp Zaurus SL-C7xx, say y to enable the | ||
51 | backlight driver. | ||
52 | |||