提交 c61ebe83 编写于 作者: D Dmitry Torokhov

Input: tsc2007 - switch to using input_set_capability()

Do not manipulate evbits/keybits directly, use helper for that.
Signed-off-by: NDmitry Torokhov <dmitry.torokhov@gmail.com>
上级 f1443404
...@@ -364,8 +364,7 @@ static int tsc2007_probe(struct i2c_client *client, ...@@ -364,8 +364,7 @@ static int tsc2007_probe(struct i2c_client *client,
input_set_drvdata(input_dev, ts); input_set_drvdata(input_dev, ts);
input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS); input_set_capability(input_dev, EV_KEY, BTN_TOUCH);
input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
input_set_abs_params(input_dev, ABS_X, 0, MAX_12BIT, ts->fuzzx, 0); 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); input_set_abs_params(input_dev, ABS_Y, 0, MAX_12BIT, ts->fuzzy, 0);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册