aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/touchscreen
diff options
context:
space:
mode:
authorMaxime Ripard <maxime.ripard@free-electrons.com>2015-03-21 23:18:59 -0400
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2015-03-24 15:01:11 -0400
commit709583e894afad7f33add66953026ceb82cdf115 (patch)
tree6cff5c2a8db596edc2dfe8ea79289a5dd81447af /drivers/input/touchscreen
parent2c00559884e09398a6451672472b4ea7f4118291 (diff)
Input: edt-ft5x06 - remove EV_SYN event report
input_register_device already sets the EV_SYN event since all devices can generate them. Remove the redundant affectation. Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/touchscreen')
-rw-r--r--drivers/input/touchscreen/edt-ft5x06.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/edt-ft5x06.c b/drivers/input/touchscreen/edt-ft5x06.c
index cd8a7472266b..e6aef3e48bd9 100644
--- a/drivers/input/touchscreen/edt-ft5x06.c
+++ b/drivers/input/touchscreen/edt-ft5x06.c
@@ -1035,7 +1035,6 @@ static int edt_ft5x06_ts_probe(struct i2c_client *client,
1035 input->id.bustype = BUS_I2C; 1035 input->id.bustype = BUS_I2C;
1036 input->dev.parent = &client->dev; 1036 input->dev.parent = &client->dev;
1037 1037
1038 __set_bit(EV_SYN, input->evbit);
1039 __set_bit(EV_KEY, input->evbit); 1038 __set_bit(EV_KEY, input->evbit);
1040 __set_bit(EV_ABS, input->evbit); 1039 __set_bit(EV_ABS, input->evbit);
1041 __set_bit(BTN_TOUCH, input->keybit); 1040 __set_bit(BTN_TOUCH, input->keybit);