diff options
author | Guenter Roeck <linux@roeck-us.net> | 2017-01-22 17:17:40 -0800 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2017-01-22 17:22:25 -0800 |
commit | 14fdb924afd9290d43e64eeb2377d51806de1197 (patch) | |
tree | 45294cb8c286a7f56cacb552c89686d8a2838a1f /drivers/input/keyboard/opencores-kbd.c | |
parent | 2ea9c2362b562e227a944e0ae370c9868024884e (diff) | |
download | talos-obmc-linux-14fdb924afd9290d43e64eeb2377d51806de1197.tar.gz talos-obmc-linux-14fdb924afd9290d43e64eeb2377d51806de1197.zip |
Input: keyboard - drop unnecessary calls to input_set_drvdata
If 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/keyboard/opencores-kbd.c')
-rw-r--r-- | drivers/input/keyboard/opencores-kbd.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/input/keyboard/opencores-kbd.c b/drivers/input/keyboard/opencores-kbd.c index 98ea6190f5f5..d62b4068c077 100644 --- a/drivers/input/keyboard/opencores-kbd.c +++ b/drivers/input/keyboard/opencores-kbd.c @@ -75,8 +75,6 @@ static int opencores_kbd_probe(struct platform_device *pdev) input->name = pdev->name; input->phys = "opencores-kbd/input0"; - input_set_drvdata(input, opencores_kbd); - input->id.bustype = BUS_HOST; input->id.vendor = 0x0001; input->id.product = 0x0001; |