summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Torokhov <dmitry.torokhov@gmail.com>2017-02-17 14:51:13 -0800
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2017-02-22 23:48:13 -0800
commitc61ebe83e7fba0ad4d88dc114121cf8ff7ca8d47 (patch)
treee7140dc151a6b9f1ca1449f036e973d27578a41e
parentf14434040ce0d1bcaac167fb08286e31d48ca9a5 (diff)
downloadlinux-c61ebe83e7fba0ad4d88dc114121cf8ff7ca8d47.tar.bz2
Input: tsc2007 - switch to using input_set_capability()
Do not manipulate evbits/keybits directly, use helper for that. Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r--drivers/input/touchscreen/tsc2007_core.c3
1 files changed, 1 insertions, 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);