summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Torokhov2017-02-21 06:53:51 +0100
committerDmitry Torokhov2017-04-04 01:24:32 +0200
commit42e02a6a0db5499d036ff05710fe7370f9a8683a (patch)
treefd2618832279ce0cd86709f031e85a4cf19828aa
parentInput: eeti_ts - use get_unaligned_be16() to retrieve data (diff)
downloadkernel-qcow2-linux-42e02a6a0db5499d036ff05710fe7370f9a8683a.tar.gz
kernel-qcow2-linux-42e02a6a0db5499d036ff05710fe7370f9a8683a.tar.xz
kernel-qcow2-linux-42e02a6a0db5499d036ff05710fe7370f9a8683a.zip
Input: eeti_ts - use input_set_capability()
Use input_set_capability() instead of manipulating evbit/keybit masks directly. Reviewed-by: Daniel Mack <daniel@zonque.org> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r--drivers/input/touchscreen/eeti_ts.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/input/touchscreen/eeti_ts.c b/drivers/input/touchscreen/eeti_ts.c
index 0e4b19236d68..b472e0e467e8 100644
--- 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);