diff options
author | Henrique de Moraes Holschuh <hmh@hmh.eng.br> | 2008-03-18 09:47:48 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2008-04-24 23:37:42 +0100 |
commit | 29d76dfa29fe22583aefddccda0bc56aa81035dc (patch) | |
tree | fbae9207af63cb270b715a29ee7dc053d7b8a037 /include/linux/leds.h | |
parent | ca3259b3603539e72faacc6821050ee889a52103 (diff) | |
download | linux-3.10-29d76dfa29fe22583aefddccda0bc56aa81035dc.tar.gz linux-3.10-29d76dfa29fe22583aefddccda0bc56aa81035dc.tar.bz2 linux-3.10-29d76dfa29fe22583aefddccda0bc56aa81035dc.zip |
leds: Add support to leds with readable status
Some led hardware allows drivers to query the led state, and this patch
adds a hook to let the led class take advantage of that information when
available.
Without this functionality, when access to the led hardware is not
exclusive (i.e. firmware or hardware might change its state behind the
kernel's back), reality goes out of sync with the led class' idea of what
the led is doing, which is annoying at best.
Behaviour for drivers that do not or cannot read the led status is
unchanged.
Signed-off-by: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Signed-off-by: Richard Purdie <rpurdie@rpsys.net>
Diffstat (limited to 'include/linux/leds.h')
-rw-r--r-- | include/linux/leds.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/leds.h b/include/linux/leds.h index c195a674b6c..ff1570f9704 100644 --- a/include/linux/leds.h +++ b/include/linux/leds.h @@ -37,6 +37,8 @@ struct led_classdev { /* Set LED brightness level */ void (*brightness_set)(struct led_classdev *led_cdev, enum led_brightness brightness); + /* Get LED brightness level */ + enum led_brightness (*brightness_get)(struct led_classdev *led_cdev); /* Activate hardware accelerated blink */ int (*blink_set)(struct led_classdev *led_cdev, |