diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2008-06-02 01:02:40 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2008-06-30 09:35:18 -0400 |
commit | c98122828111d3eeb29bd2d51496e300b4e5356e (patch) | |
tree | 6c50b27a2c5fcb96e3309e4f8c433ba43b6365ce /drivers/input/input.c | |
parent | 15439dd37f92f930ac7fc65a4f261834e4215bb0 (diff) |
Input: don't reset sync flag when ignoring event
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/input.c')
-rw-r--r-- | drivers/input/input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/input.c b/drivers/input/input.c index 27006fc18305..cae48117e86b 100644 --- a/drivers/input/input.c +++ b/drivers/input/input.c | |||
@@ -241,7 +241,7 @@ static void input_handle_event(struct input_dev *dev, | |||
241 | break; | 241 | break; |
242 | } | 242 | } |
243 | 243 | ||
244 | if (type != EV_SYN) | 244 | if (disposition != INPUT_IGNORE_EVENT && type != EV_SYN) |
245 | dev->sync = 0; | 245 | dev->sync = 0; |
246 | 246 | ||
247 | if ((disposition & INPUT_PASS_TO_DEVICE) && dev->event) | 247 | if ((disposition & INPUT_PASS_TO_DEVICE) && dev->event) |