diff options
author | Guenter Roeck <linux@roeck-us.net> | 2017-01-23 04:18:24 +0300 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2017-01-23 04:22:28 +0300 |
commit | 555c765b0cc29119f4ff767334c479040587a1d6 (patch) | |
tree | 3d7bf9d960ca6d85ee067595cc078ab84dc6baf9 /drivers/input/mouse/cypress_ps2.c | |
parent | 0ff44b0fd35c4bb1c2ec3d94043a465ff15b3099 (diff) | |
download | linux-555c765b0cc29119f4ff767334c479040587a1d6.tar.xz |
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>
Diffstat (limited to 'drivers/input/mouse/cypress_ps2.c')
-rw-r--r-- | drivers/input/mouse/cypress_ps2.c | 2 |
1 files changed, 0 insertions, 2 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, __set_bit(BTN_RIGHT, input->keybit); __set_bit(BTN_MIDDLE, input->keybit); - input_set_drvdata(input, cytp); - return 0; } |