diff options
author | Stephane Chatty <chatty@enac.fr> | 2010-02-10 12:09:17 +0100 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2010-02-10 12:09:17 +0100 |
commit | b32758c7216f337044ceb6dcaa754b8eda95a59f (patch) | |
tree | e7cfceb9ded6578ed935bea845592d9185663bf0 /drivers/hid/hid-stantum.c | |
parent | eabe5c90580a065aed8ce6a5ba53eb443d317fae (diff) | |
download | blackbird-op-linux-b32758c7216f337044ceb6dcaa754b8eda95a59f.tar.gz blackbird-op-linux-b32758c7216f337044ceb6dcaa754b8eda95a59f.zip |
HID: fixed bug in single-touch emulation on the stantum panel
Fixed stupid copy-paste bug in touchscreen emulation for the Stantum multitouch
panel: a flag was reset just before being tested.
Signed-off-by: Stephane Chatty <chatty@enac.fr>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-stantum.c')
-rw-r--r-- | drivers/hid/hid-stantum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-stantum.c b/drivers/hid/hid-stantum.c index add965dab932..1b7b1659e7bb 100644 --- a/drivers/hid/hid-stantum.c +++ b/drivers/hid/hid-stantum.c @@ -147,7 +147,6 @@ static void stantum_filter_event(struct stantum_data *sd, input_mt_sync(input); sd->valid = false; - sd->first = false; /* touchscreen emulation */ if (sd->first) { @@ -158,6 +157,7 @@ static void stantum_filter_event(struct stantum_data *sd, input_event(input, EV_ABS, ABS_X, sd->x); input_event(input, EV_ABS, ABS_Y, sd->y); } + sd->first = false; } |