From: Dmitry Torokhov Date: Fri, 17 Feb 2017 22:51:13 +0000 (-0800) Subject: Input: tsc2007 - switch to using input_set_capability() X-Git-Tag: v4.14-rc1~4^2~36^2~139^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c61ebe83e7fba0ad4d88dc114121cf8ff7ca8d47;p=platform%2Fkernel%2Flinux-rpi.git Input: tsc2007 - switch to using input_set_capability() Do not manipulate evbits/keybits directly, use helper for that. Signed-off-by: Dmitry Torokhov --- diff --git a/drivers/input/touchscreen/tsc2007_core.c b/drivers/input/touchscreen/tsc2007_core.c index fdf81a2..98dbefc 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);