aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorPing Cheng <pingc@wacom.com>2009-06-02 19:59:58 -0400
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2009-06-03 10:37:36 -0400
commita86295283063ce23fbefad494c71290caf8eae25 (patch)
tree9a4f806abde6b012f48b1123e44d533154692e01 /drivers
parentcbf806dd9302f3ff27ba496dae474b9da6b58873 (diff)
Input: wacom - clear Intuos4 wheel data when finger leaves proximity
Signed-off-by: Ping Cheng <pingc@wacom.com> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/input/tablet/wacom_wac.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/input/tablet/wacom_wac.c b/drivers/input/tablet/wacom_wac.c
index 2ff89904f26f..38bf86384aeb 100644
--- a/drivers/input/tablet/wacom_wac.c
+++ b/drivers/input/tablet/wacom_wac.c
@@ -455,6 +455,9 @@ static int wacom_intuos_irq(struct wacom_wac *wacom, void *wcombo)
455 wacom_report_key(wcombo, BTN_6, (data[3] & 0x20)); 455 wacom_report_key(wcombo, BTN_6, (data[3] & 0x20));
456 if (data[1] & 0x80) { 456 if (data[1] & 0x80) {
457 wacom_report_abs(wcombo, ABS_WHEEL, (data[1] & 0x7f)); 457 wacom_report_abs(wcombo, ABS_WHEEL, (data[1] & 0x7f));
458 } else {
459 /* Out of proximity, clear wheel value. */
460 wacom_report_abs(wcombo, ABS_WHEEL, 0);
458 } 461 }
459 if (wacom->features->type != INTUOS4S) { 462 if (wacom->features->type != INTUOS4S) {
460 wacom_report_key(wcombo, BTN_7, (data[3] & 0x40)); 463 wacom_report_key(wcombo, BTN_7, (data[3] & 0x40));