diff options
author | Guennadi Liakhovetski <lg@denx.de> | 2009-01-10 18:54:39 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-04-06 16:06:25 +0100 |
commit | 1bd465e6b0e2b559db47420fea686507a01cfab0 (patch) | |
tree | 623c7a906e4ce117873a33f5b1717e150d5f9e59 /include/linux/leds.h | |
parent | a7d878af94b223013a48078e0c8c0a654c24a057 (diff) | |
download | kernel_samsung_smdk4412-1bd465e6b0e2b559db47420fea686507a01cfab0.zip kernel_samsung_smdk4412-1bd465e6b0e2b559db47420fea686507a01cfab0.tar.gz kernel_samsung_smdk4412-1bd465e6b0e2b559db47420fea686507a01cfab0.tar.bz2 |
leds: allow led-drivers to use a variable range of brightness values
This patch allows drivers to override the default maximum brightness value
of 255. We take care to preserve backwards-compatibility as much as
possible, so that user-space ABI doesn't change for existing drivers.
LED trigger code has also been updated to use the per-LED maximum.
Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'include/linux/leds.h')
-rw-r--r-- | include/linux/leds.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/leds.h b/include/linux/leds.h index 24489da..17d277e 100644 --- a/include/linux/leds.h +++ b/include/linux/leds.h @@ -30,6 +30,7 @@ enum led_brightness { struct led_classdev { const char *name; int brightness; + int max_brightness; int flags; /* Lower 16 bits reflect status */ |