Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1583790
| From | Dmitry Torokhov <dmitry.torokhov@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] Input: tsc2007 - switch to using input_set_capability() |
| Date | 2017-02-18 00:00 +0100 |
| Message-ID | <tbZFn-1Z7-3@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Do not manipulate evbit/keybit directly, use helper for that. Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> --- drivers/input/touchscreen/tsc2007_core.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/input/touchscreen/tsc2007_core.c b/drivers/input/touchscreen/tsc2007_core.c index fdf81a2b989a..98dbefc3357d 100644 --- a/drivers/input/touchscreen/tsc2007_core.c +++ b/drivers/input/touchscreen/tsc2007_core.c @@ -364,8 +364,7 @@ static int tsc2007_probe(struct i2c_client *client, input_set_drvdata(input_dev, ts); - input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS); - input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH); + input_set_capability(input_dev, EV_KEY, BTN_TOUCH); input_set_abs_params(input_dev, ABS_X, 0, MAX_12BIT, ts->fuzzx, 0); input_set_abs_params(input_dev, ABS_Y, 0, MAX_12BIT, ts->fuzzy, 0); -- 2.11.0.483.g087da7b7c-goog -- Dmitry
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] Input: tsc2007 - switch to using input_set_capability() Dmitry Torokhov <dmitry.torokhov@gmail.com> - 2017-02-18 00:00 +0100
Re: [PATCH] Input: tsc2007 - switch to using input_set_capability() "H. Nikolaus Schaller" <hns@goldelico.com> - 2017-02-18 16:00 +0100
Re: [PATCH] Input: tsc2007 - switch to using input_set_capability() Dmitry Torokhov <dmitry.torokhov@gmail.com> - 2017-02-20 02:20 +0100
Re: [PATCH] Input: tsc2007 - switch to using input_set_capability() "H. Nikolaus Schaller" <hns@goldelico.com> - 2017-02-20 18:00 +0100
csiph-web