aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/hid/hid-stantum.c2
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,
147 147
148 input_mt_sync(input); 148 input_mt_sync(input);
149 sd->valid = false; 149 sd->valid = false;
150 sd->first = false;
151 150
152 /* touchscreen emulation */ 151 /* touchscreen emulation */
153 if (sd->first) { 152 if (sd->first) {
@@ -158,6 +157,7 @@ static void stantum_filter_event(struct stantum_data *sd,
158 input_event(input, EV_ABS, ABS_X, sd->x); 157 input_event(input, EV_ABS, ABS_X, sd->x);
159 input_event(input, EV_ABS, ABS_Y, sd->y); 158 input_event(input, EV_ABS, ABS_Y, sd->y);
160 } 159 }
160 sd->first = false;
161} 161}
162 162
163 163