Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1589859
| From | Dmitry Torokhov <dmitry.torokhov@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 04/10] Input: eeti_ts - use input_set_capability() |
| Date | 2017-03-01 00:20 +0100 |
| Message-ID | <tfZdL-2BN-5@gated-at.bofh.it> (permalink) |
| References | <tfZdL-2BN-7@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Use input_set_capability() instead of manipulating evbit/keybit masks directly. Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> --- drivers/input/touchscreen/eeti_ts.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/input/touchscreen/eeti_ts.c b/drivers/input/touchscreen/eeti_ts.c index 0e4b19236d68..b472e0e467e8 100644 --- a/drivers/input/touchscreen/eeti_ts.c +++ b/drivers/input/touchscreen/eeti_ts.c @@ -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); -- 2.11.0.483.g087da7b7c-goog
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH 04/10] Input: eeti_ts - use input_set_capability() Dmitry Torokhov <dmitry.torokhov@gmail.com> - 2017-03-01 00:20 +0100
csiph-web