aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authoreric miao <eric.miao@marvell.com>2008-04-14 04:35:08 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2008-07-03 08:25:00 -0400
commit42796d37da6ef4fd851dc6d5d0387baf7e2b0c3c (patch)
tree27fa92814c1e3548f4c6fd1ff03cc3623a56ded1 /include/linux
parentc860d701cc5f77b74c481dcbd25b2d8b31c622fc (diff)
[ARM] pxa: add generic PWM backlight driver
Patch mostly from Eric Miao, with minor edits by rmk to convert Eric's driver to a generic PWM-based backlight driver. Signed-off-by: eric miao <eric.miao@marvell.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/pwm_backlight.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/linux/pwm_backlight.h b/include/linux/pwm_backlight.h
new file mode 100644
index 000000000000..aeeffedbe822
--- /dev/null
+++ b/include/linux/pwm_backlight.h
@@ -0,0 +1,14 @@
1/*
2 * Generic PWM backlight driver data - see drivers/video/backlight/pwm_bl.c
3 */
4#ifndef __LINUX_PWM_BACKLIGHT_H
5#define __LINUX_PWM_BACKLIGHT_H
6
7struct platform_pwm_backlight_data {
8 int pwm_id;
9 unsigned int max_brightness;
10 unsigned int dft_brightness;
11 unsigned int pwm_period_ns;
12};
13
14#endif