From: Ping Cheng Date: Sat, 12 Apr 2014 20:43:25 +0000 (-0700) Subject: Input: wacom - missed the last bit of expresskey for DTU-1031 X-Git-Tag: v4.9.8~2718^2~217 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=91ae0e77836b4a13f511b4fc62dc31c523858187;p=platform%2Fkernel%2Flinux-rpi3.git Input: wacom - missed the last bit of expresskey for DTU-1031 Signed-off-by: Ping Cheng Signed-off-by: Dmitry Torokhov --- diff --git a/drivers/input/tablet/wacom_wac.c b/drivers/input/tablet/wacom_wac.c index 05f371d..3d094c9 100644 --- a/drivers/input/tablet/wacom_wac.c +++ b/drivers/input/tablet/wacom_wac.c @@ -1838,7 +1838,7 @@ int wacom_setup_input_capabilities(struct input_dev *input_dev, case DTU: if (features->type == DTUS) { input_set_capability(input_dev, EV_MSC, MSC_SERIAL); - for (i = 0; i < 3; i++) + for (i = 0; i < 4; i++) __set_bit(BTN_0 + i, input_dev->keybit); } __set_bit(BTN_TOOL_PEN, input_dev->keybit);