Commit 666c0b83 authored by Guenter Roeck's avatar Guenter Roeck Committed by Dmitry Torokhov

Input: keyboard - drop calls to platform_set_drvdata and i2c_set_clientdata

There is no call to i2c_get_clientdata(), platform_get_drvdata(),
or dev_get_drvdata() in any of the drivers in this patch.
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 83e4947a
...@@ -148,8 +148,6 @@ static int adc_keys_probe(struct platform_device *pdev) ...@@ -148,8 +148,6 @@ static int adc_keys_probe(struct platform_device *pdev)
if (error) if (error)
return error; return error;
platform_set_drvdata(pdev, st);
poll_dev = devm_input_allocate_polled_device(dev); poll_dev = devm_input_allocate_polled_device(dev);
if (!poll_dev) { if (!poll_dev) {
dev_err(dev, "failed to allocate input device\n"); dev_err(dev, "failed to allocate input device\n");
......
...@@ -392,7 +392,6 @@ static int cap11xx_i2c_probe(struct i2c_client *i2c_client, ...@@ -392,7 +392,6 @@ static int cap11xx_i2c_probe(struct i2c_client *i2c_client,
return error; return error;
dev_info(dev, "CAP11XX detected, revision 0x%02x\n", rev); dev_info(dev, "CAP11XX detected, revision 0x%02x\n", rev);
i2c_set_clientdata(i2c_client, priv);
node = dev->of_node; node = dev->of_node;
if (!of_property_read_u32(node, "microchip,sensor-gain", &gain32)) { if (!of_property_read_u32(node, "microchip,sensor-gain", &gain32)) {
......
...@@ -365,7 +365,6 @@ static int gpio_keys_polled_probe(struct platform_device *pdev) ...@@ -365,7 +365,6 @@ static int gpio_keys_polled_probe(struct platform_device *pdev)
bdev->poll_dev = poll_dev; bdev->poll_dev = poll_dev;
bdev->dev = dev; bdev->dev = dev;
bdev->pdata = pdata; bdev->pdata = pdata;
platform_set_drvdata(pdev, bdev);
error = input_register_polled_device(poll_dev); error = input_register_polled_device(poll_dev);
if (error) { if (error) {
......
...@@ -197,8 +197,6 @@ static int jornada680kbd_probe(struct platform_device *pdev) ...@@ -197,8 +197,6 @@ static int jornada680kbd_probe(struct platform_device *pdev)
return -ENOMEM; return -ENOMEM;
} }
platform_set_drvdata(pdev, jornadakbd);
jornadakbd->poll_dev = poll_dev; jornadakbd->poll_dev = poll_dev;
memcpy(jornadakbd->keymap, jornada_scancodes, memcpy(jornadakbd->keymap, jornada_scancodes,
......
...@@ -241,7 +241,6 @@ static int max7359_probe(struct i2c_client *client, ...@@ -241,7 +241,6 @@ static int max7359_probe(struct i2c_client *client,
/* Initialize MAX7359 */ /* Initialize MAX7359 */
max7359_initialize(client); max7359_initialize(client);
i2c_set_clientdata(client, keypad);
device_init_wakeup(&client->dev, 1); device_init_wakeup(&client->dev, 1);
return 0; return 0;
......
...@@ -249,8 +249,6 @@ static int nspire_keypad_probe(struct platform_device *pdev) ...@@ -249,8 +249,6 @@ static int nspire_keypad_probe(struct platform_device *pdev)
return error; return error;
} }
platform_set_drvdata(pdev, keypad);
dev_dbg(&pdev->dev, dev_dbg(&pdev->dev,
"TI-NSPIRE keypad at %pR (scan_interval=%uus, row_delay=%uus%s)\n", "TI-NSPIRE keypad at %pR (scan_interval=%uus, row_delay=%uus%s)\n",
res, keypad->row_delay, keypad->scan_interval, res, keypad->row_delay, keypad->scan_interval,
......
...@@ -112,8 +112,6 @@ static int opencores_kbd_probe(struct platform_device *pdev) ...@@ -112,8 +112,6 @@ static int opencores_kbd_probe(struct platform_device *pdev)
return error; return error;
} }
platform_set_drvdata(pdev, opencores_kbd);
return 0; return 0;
} }
......
...@@ -261,7 +261,6 @@ static int sun4i_lradc_probe(struct platform_device *pdev) ...@@ -261,7 +261,6 @@ static int sun4i_lradc_probe(struct platform_device *pdev)
if (error) if (error)
return error; return error;
platform_set_drvdata(pdev, lradc);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment