diff options
Diffstat (limited to 'drivers/hid/hid-input.c')
-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 8e733b6eae27..b9877a86eca7 100644 --- a/drivers/hid/hid-input.c +++ b/drivers/hid/hid-input.c | |||
@@ -739,6 +739,9 @@ void hidinput_report_event(struct hid_device *hid, struct hid_report *report) | |||
739 | { | 739 | { |
740 | struct hid_input *hidinput; | 740 | struct hid_input *hidinput; |
741 | 741 | ||
742 | if (hid->quirks & HID_QUIRK_NO_INPUT_SYNC) | ||
743 | return; | ||
744 | |||
742 | list_for_each_entry(hidinput, &hid->inputs, list) | 745 | list_for_each_entry(hidinput, &hid->inputs, list) |
743 | input_sync(hidinput->input); | 746 | input_sync(hidinput->input); |
744 | } | 747 | } |