aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuenter Roeck <linux@roeck-us.net>2017-01-22 20:18:24 -0500
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2017-01-22 20:22:28 -0500
commit555c765b0cc29119f4ff767334c479040587a1d6 (patch)
tree3d7bf9d960ca6d85ee067595cc078ab84dc6baf9
parent0ff44b0fd35c4bb1c2ec3d94043a465ff15b3099 (diff)
Input: mouse - drop unnecessary calls to input_set_drvdata
Since there is no call to dev_get_drvdata() or input_get_drvdata(), the call to input_set_drvdata() is unnecessary and can be dropped. Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r--drivers/input/mouse/cypress_ps2.c2
-rw-r--r--drivers/input/mouse/maplemouse.c1
2 files changed, 0 insertions, 3 deletions
diff --git a/drivers/input/mouse/cypress_ps2.c b/drivers/input/mouse/cypress_ps2.c
index faa3a980d4f5..21bad3e75fee 100644
--- a/drivers/input/mouse/cypress_ps2.c
+++ b/drivers/input/mouse/cypress_ps2.c
@@ -414,8 +414,6 @@ static int cypress_set_input_params(struct input_dev *input,
414 __set_bit(BTN_RIGHT, input->keybit); 414 __set_bit(BTN_RIGHT, input->keybit);
415 __set_bit(BTN_MIDDLE, input->keybit); 415 __set_bit(BTN_MIDDLE, input->keybit);
416 416
417 input_set_drvdata(input, cytp);
418
419 return 0; 417 return 0;
420} 418}
421 419
diff --git a/drivers/input/mouse/maplemouse.c b/drivers/input/mouse/maplemouse.c
index 0a60717b91c6..25f0ecb90126 100644
--- a/drivers/input/mouse/maplemouse.c
+++ b/drivers/input/mouse/maplemouse.c
@@ -87,7 +87,6 @@ static int probe_maple_mouse(struct device *dev)
87 mse->dev = input_dev; 87 mse->dev = input_dev;
88 mse->mdev = mdev; 88 mse->mdev = mdev;
89 89
90 input_set_drvdata(input_dev, mse);
91 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REL); 90 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REL);
92 input_dev->keybit[BIT_WORD(BTN_MOUSE)] = BIT_MASK(BTN_LEFT) | 91 input_dev->keybit[BIT_WORD(BTN_MOUSE)] = BIT_MASK(BTN_LEFT) |
93 BIT_MASK(BTN_RIGHT) | BIT_MASK(BTN_MIDDLE); 92 BIT_MASK(BTN_RIGHT) | BIT_MASK(BTN_MIDDLE);