aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input
diff options
context:
space:
mode:
authorPing Cheng <pinglinux@gmail.com>2011-10-04 23:50:42 -0700
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2011-10-05 00:26:17 -0700
commit77e82516a69ad7dd10ada425930ba35e933abcfb (patch)
tree61113d84614f9c7ae7ba508fda7193384efd49f2 /drivers/input
parentInput: wacom - lower the LED luminance (diff)
downloadlinux-dev-77e82516a69ad7dd10ada425930ba35e933abcfb.tar.xz
linux-dev-77e82516a69ad7dd10ada425930ba35e933abcfb.zip
Input: wacom - don't expose LED inactive option
The LED also indicates the status of the tablet. Don't turn it off. Reviewed-by: Eduard Hasenleithner <eduard@hasenleithner.at> Tested-by: Eduard Hasenleithner <eduard@hasenleithner.at> Signed-off-by: Ping Cheng <pingc@wacom.com> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input')
-rw-r--r--drivers/input/tablet/wacom.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/tablet/wacom.h b/drivers/input/tablet/wacom.h
index 00332d66bc4b..561f1072343b 100644
--- a/drivers/input/tablet/wacom.h
+++ b/drivers/input/tablet/wacom.h
@@ -115,9 +115,9 @@ struct wacom {
bool open;
char phys[32];
struct wacom_led {
- u8 select; /* status led selector (0..3, -1=none) */
- u8 llv; /* status led brightness no button */
- u8 hlv; /* status led brightness button pressed */
+ u8 select; /* status led selector (0..3) */
+ u8 llv; /* status led brightness no button (1..127) */
+ u8 hlv; /* status led brightness button pressed (1..127) */
u8 img_lum; /* OLED matrix display brightness */
} led;
};