summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Torokhov <dmitry.torokhov@gmail.com>2020-05-24 16:51:34 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-07-22 09:22:25 +0200
commit55500ddcb7f0ceec507760ab544ba92543384e33 (patch)
tree5af23ca1b3c5545c2e5444fcaa8892b95e695f8e
parente0c31e97437de14c5f5a8174771454f95dd5a87b (diff)
downloadlinux-stable-55500ddcb7f0ceec507760ab544ba92543384e33.tar.gz
linux-stable-55500ddcb7f0ceec507760ab544ba92543384e33.tar.bz2
linux-stable-55500ddcb7f0ceec507760ab544ba92543384e33.zip
HID: magicmouse: do not set up autorepeat
commit 6363d2065cd399cf9d6dc9d08c437f8658831100 upstream. Neither the trackpad, nor the mouse want input core to generate autorepeat events for their buttons, so let's reset the bit (as hid-input sets it for these devices based on the usage vendor code). Cc: stable@vger.kernel.org Reported-by: Yariv <oigevald+kernel@gmail.com> Tested-by: Yariv <oigevald+kernel@gmail.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/hid/hid-magicmouse.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/hid/hid-magicmouse.c b/drivers/hid/hid-magicmouse.c
index 20b40ad26325..8c993f95e3ba 100644
--- a/drivers/hid/hid-magicmouse.c
+++ b/drivers/hid/hid-magicmouse.c
@@ -451,6 +451,12 @@ static int magicmouse_setup_input(struct input_dev *input, struct hid_device *hd
__set_bit(MSC_RAW, input->mscbit);
}
+ /*
+ * hid-input may mark device as using autorepeat, but neither
+ * the trackpad, nor the mouse actually want it.
+ */
+ __clear_bit(EV_REP, input->evbit);
+
return 0;
}