diff options
author | Matthew Garrett <mjg@redhat.com> | 2008-06-09 16:56:16 -0400 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2008-07-23 04:50:18 -0400 |
commit | 7be35c72e6454059a33ad844153349973d22fcb7 (patch) | |
tree | ed7d076bd65723af33559aeb9da80561af799d89 /drivers/video/backlight/Kconfig | |
parent | c010b2f76c3032e48097a6eef291d8593d5d79a6 (diff) |
backlight: Add Nvidia-based Apple Macbook Pro backlight driver
Nvidia-based Apple Macbook Pros don't appear to handle backlight control
through the graphics card registers or ACPI, but instead trigger changes
via SMI calls. This driver registers a generic backlight device that
lets existing userspace deal with it. Code derived from Julien Blache's
Pommed application.
Signed-off-by: Julien Blache <jb@jblache.org>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
Signed-off-by: Richard Purdie <rpurdie@rpsys.net>
Diffstat (limited to 'drivers/video/backlight/Kconfig')
-rw-r--r-- | drivers/video/backlight/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/video/backlight/Kconfig b/drivers/video/backlight/Kconfig index 30bf7f2f1635..62547bd2ea49 100644 --- a/drivers/video/backlight/Kconfig +++ b/drivers/video/backlight/Kconfig | |||
@@ -119,3 +119,12 @@ config BACKLIGHT_PWM | |||
119 | help | 119 | help |
120 | If you have a LCD backlight adjustable by PWM, say Y to enable | 120 | If you have a LCD backlight adjustable by PWM, say Y to enable |
121 | this driver. | 121 | this driver. |
122 | |||
123 | config BACKLIGHT_MBP_NVIDIA | ||
124 | tristate "MacBook Pro Nvidia Backlight Driver" | ||
125 | depends on BACKLIGHT_CLASS_DEVICE && X86 | ||
126 | default n | ||
127 | help | ||
128 | If you have an Apple Macbook Pro with Nvidia graphics hardware say Y | ||
129 | to enable a driver for its backlight | ||
130 | |||