diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2007-09-02 19:27:00 -0400 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2007-10-11 17:24:13 -0400 |
commit | c3f8f65046127f471d0b6193a1923185b354c011 (patch) | |
tree | 69e9178d13f9c1e02387f33fbff38fff612eb12e /include | |
parent | 18f65c793a5106b9f99822ef248e71582db03386 (diff) |
backlight: Convert corgi backlight driver into a more generic driver
Convert the corgi backlight driver to a more generic version
so it can be reused by other code rather than being Zaurus/PXA
specific.
Signed-off-by: Richard Purdie <rpurdie@rpsys.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-arm/arch-pxa/sharpsl.h | 6 | ||||
-rw-r--r-- | include/linux/backlight.h | 9 |
2 files changed, 9 insertions, 6 deletions
diff --git a/include/asm-arm/arch-pxa/sharpsl.h b/include/asm-arm/arch-pxa/sharpsl.h index 94cb4982af82..2b0fe773213a 100644 --- a/include/asm-arm/arch-pxa/sharpsl.h +++ b/include/asm-arm/arch-pxa/sharpsl.h | |||
@@ -25,12 +25,6 @@ struct corgits_machinfo { | |||
25 | /* | 25 | /* |
26 | * SharpSL Backlight | 26 | * SharpSL Backlight |
27 | */ | 27 | */ |
28 | struct corgibl_machinfo { | ||
29 | int max_intensity; | ||
30 | int default_intensity; | ||
31 | int limit_mask; | ||
32 | void (*set_bl_intensity)(int intensity); | ||
33 | }; | ||
34 | extern void corgibl_limit_intensity(int limit); | 28 | extern void corgibl_limit_intensity(int limit); |
35 | 29 | ||
36 | 30 | ||
diff --git a/include/linux/backlight.h b/include/linux/backlight.h index c897c7b03858..1ee9488ca2e4 100644 --- a/include/linux/backlight.h +++ b/include/linux/backlight.h | |||
@@ -92,4 +92,13 @@ static inline void * bl_get_data(struct backlight_device *bl_dev) | |||
92 | return dev_get_drvdata(&bl_dev->dev); | 92 | return dev_get_drvdata(&bl_dev->dev); |
93 | } | 93 | } |
94 | 94 | ||
95 | struct generic_bl_info { | ||
96 | const char *name; | ||
97 | int max_intensity; | ||
98 | int default_intensity; | ||
99 | int limit_mask; | ||
100 | void (*set_bl_intensity)(int intensity); | ||
101 | void (*kick_battery)(void); | ||
102 | }; | ||
103 | |||
95 | #endif | 104 | #endif |