diff options
Diffstat (limited to 'drivers/hid')
-rw-r--r-- | drivers/hid/hid-input.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/hid/hid-input.c b/drivers/hid/hid-input.c index 6c03dcc5760a..b186f6d0feba 100644 --- a/drivers/hid/hid-input.c +++ b/drivers/hid/hid-input.c | |||
@@ -659,6 +659,9 @@ void hidinput_report_event(struct hid_device *hid, struct hid_report *report) | |||
659 | { | 659 | { |
660 | struct hid_input *hidinput; | 660 | struct hid_input *hidinput; |
661 | 661 | ||
662 | if (hid->quirks & HID_QUIRK_NO_INPUT_SYNC) | ||
663 | return; | ||
664 | |||
662 | list_for_each_entry(hidinput, &hid->inputs, list) | 665 | list_for_each_entry(hidinput, &hid->inputs, list) |
663 | input_sync(hidinput->input); | 666 | input_sync(hidinput->input); |
664 | } | 667 | } |