diff options
author | Przemo Firszt <przemo@firszt.eu> | 2012-03-09 13:20:51 +0000 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2012-03-12 15:52:28 +0100 |
commit | 693f45bb2d6ff5bf8fb3b69ff904b44ef8cffd8d (patch) | |
tree | 1b7507efa2ad7d80015123df2ada1281cf2ba7e4 /drivers/hid/hid-wacom.c | |
parent | 6245bde29dd049300d663516398335be8d451b78 (diff) | |
download | talos-obmc-linux-693f45bb2d6ff5bf8fb3b69ff904b44ef8cffd8d.tar.gz talos-obmc-linux-693f45bb2d6ff5bf8fb3b69ff904b44ef8cffd8d.zip |
HID: wacom: Reset stylus buttons - Intuos4 WL
Stylus buttons have to be resetted when going out-of-prox.
Signed-off-by: Przemo Firszt <przemo@firszt.eu>
Reviewed-by: Jason Gerecke <killertofu@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-wacom.c')
-rw-r--r-- | drivers/hid/hid-wacom.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/hid/hid-wacom.c b/drivers/hid/hid-wacom.c index 58aedbc80f02..f9af474275db 100644 --- a/drivers/hid/hid-wacom.c +++ b/drivers/hid/hid-wacom.c @@ -352,6 +352,8 @@ static void wacom_i4_parse_pen_report(struct wacom_data *wdata, case 0x80: /* Out of proximity report */ input_report_key(input, BTN_TOUCH, 0); input_report_abs(input, ABS_PRESSURE, 0); + input_report_key(input, BTN_STYLUS, 0); + input_report_key(input, BTN_STYLUS2, 0); input_report_key(input, wdata->tool, 0); input_report_abs(input, ABS_MISC, 0); input_event(input, EV_MSC, MSC_SERIAL, wdata->serial); |