diff options
| author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-11 22:19:50 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-11 22:19:50 -0400 |
| commit | 6f35308c3ffa256bed183adf6f2c0c6c211ca487 (patch) | |
| tree | f1aaaec5f650bdd80d30230df25bbf33e43efd5f /include/linux | |
| parent | 19ad7ae47e4ce4eb2a583e437d653a96da7897ac (diff) | |
| parent | c3f8f65046127f471d0b6193a1923185b354c011 (diff) | |
Merge branch 'for-linus' of git://git.o-hand.com/linux-rpurdie-backlight
* 'for-linus' of git://git.o-hand.com/linux-rpurdie-backlight:
backlight: Convert corgi backlight driver into a more generic driver
backlight: Add Samsung LTV350QV LCD driver
backlight: Fix cr_bllcd allocations and error paths
backlight/leds: Make two structs static
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/backlight.h | 9 |
1 files changed, 9 insertions, 0 deletions
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 |
