projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e9f66cd
)
Input: eeti_ts - use input_set_capability()
author
Dmitry Torokhov
<
[email protected]
>
Tue, 21 Feb 2017 05:53:51 +0000
(21:53 -0800)
committer
Dmitry Torokhov
<
[email protected]
>
Mon, 3 Apr 2017 23:24:32 +0000
(16:24 -0700)
Use input_set_capability() instead of manipulating evbit/keybit
masks directly.
Reviewed-by: Daniel Mack <
[email protected]
>
Signed-off-by: Dmitry Torokhov <
[email protected]
>
drivers/input/touchscreen/eeti_ts.c
patch
|
blob
|
history
diff --git
a/drivers/input/touchscreen/eeti_ts.c
b/drivers/input/touchscreen/eeti_ts.c
index 0e4b19236d68674539bf7b126a84935cb878d3ee..b472e0e467e8abcc9cd826aa685252770ceeb4f7 100644
(file)
--- 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);