diff mbox

[1/3] input: remove redundant check for EV_REP

Message ID 19939ec6f47e552c8c0b552d35cc0640a6af74f3.1511523174.git.sean@mess.org (mailing list archive)
State New, archived
Headers show

Commit Message

Sean Young Nov. 24, 2017, 11:43 a.m. UTC
The caller input_pass_values has already checked this bit.

Signed-off-by: Sean Young <sean@mess.org>
---
 drivers/input/input.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
diff mbox

Patch

diff --git a/drivers/input/input.c b/drivers/input/input.c
index 762bfb9487dc..ecc41d65b82a 100644
--- a/drivers/input/input.c
+++ b/drivers/input/input.c
@@ -74,9 +74,7 @@  static int input_defuzz_abs_event(int value, int old_val, int fuzz)
 
 static void input_start_autorepeat(struct input_dev *dev, int code)
 {
-	if (test_bit(EV_REP, dev->evbit) &&
-	    dev->rep[REP_PERIOD] && dev->rep[REP_DELAY] &&
-	    dev->timer.data) {
+	if (dev->rep[REP_PERIOD] && dev->rep[REP_DELAY] && dev->timer.data) {
 		dev->repeat_key = code;
 		mod_timer(&dev->timer,
 			  jiffies + msecs_to_jiffies(dev->rep[REP_DELAY]));