Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 42e02a6a authored by Dmitry Torokhov's avatar Dmitry Torokhov
Browse files

Input: eeti_ts - use input_set_capability()



Use input_set_capability() instead of manipulating evbit/keybit
masks directly.

Reviewed-by: default avatarDaniel Mack <daniel@zonque.org>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent e9f66cdb
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -186,8 +186,7 @@ static int eeti_ts_probe(struct i2c_client *client,
		goto err1;
	}

	input->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
	input->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
	input_set_capability(input, EV_KEY, BTN_TOUCH);

	input_set_abs_params(input, ABS_X, 0, EETI_MAXVAL, 0, 0);
	input_set_abs_params(input, ABS_Y, 0, EETI_MAXVAL, 0, 0);