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: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
83e4947a56
commit
666c0b8366
|
@ -148,8 +148,6 @@ static int adc_keys_probe(struct platform_device *pdev)
|
|||
if (error)
|
||||
return error;
|
||||
|
||||
platform_set_drvdata(pdev, st);
|
||||
|
||||
poll_dev = devm_input_allocate_polled_device(dev);
|
||||
if (!poll_dev) {
|
||||
dev_err(dev, "failed to allocate input device\n");
|
||||
|
|
|
@ -392,7 +392,6 @@ static int cap11xx_i2c_probe(struct i2c_client *i2c_client,
|
|||
return error;
|
||||
|
||||
dev_info(dev, "CAP11XX detected, revision 0x%02x\n", rev);
|
||||
i2c_set_clientdata(i2c_client, priv);
|
||||
node = dev->of_node;
|
||||
|
||||
if (!of_property_read_u32(node, "microchip,sensor-gain", &gain32)) {
|
||||
|
|
|
@ -365,7 +365,6 @@ static int gpio_keys_polled_probe(struct platform_device *pdev)
|
|||
bdev->poll_dev = poll_dev;
|
||||
bdev->dev = dev;
|
||||
bdev->pdata = pdata;
|
||||
platform_set_drvdata(pdev, bdev);
|
||||
|
||||
error = input_register_polled_device(poll_dev);
|
||||
if (error) {
|
||||
|
|
|
@ -197,8 +197,6 @@ static int jornada680kbd_probe(struct platform_device *pdev)
|
|||
return -ENOMEM;
|
||||
}
|
||||
|
||||
platform_set_drvdata(pdev, jornadakbd);
|
||||
|
||||
jornadakbd->poll_dev = poll_dev;
|
||||
|
||||
memcpy(jornadakbd->keymap, jornada_scancodes,
|
||||
|
|
|
@ -241,7 +241,6 @@ static int max7359_probe(struct i2c_client *client,
|
|||
/* Initialize MAX7359 */
|
||||
max7359_initialize(client);
|
||||
|
||||
i2c_set_clientdata(client, keypad);
|
||||
device_init_wakeup(&client->dev, 1);
|
||||
|
||||
return 0;
|
||||
|
|
|
@ -249,8 +249,6 @@ static int nspire_keypad_probe(struct platform_device *pdev)
|
|||
return error;
|
||||
}
|
||||
|
||||
platform_set_drvdata(pdev, keypad);
|
||||
|
||||
dev_dbg(&pdev->dev,
|
||||
"TI-NSPIRE keypad at %pR (scan_interval=%uus, row_delay=%uus%s)\n",
|
||||
res, keypad->row_delay, keypad->scan_interval,
|
||||
|
|
|
@ -112,8 +112,6 @@ static int opencores_kbd_probe(struct platform_device *pdev)
|
|||
return error;
|
||||
}
|
||||
|
||||
platform_set_drvdata(pdev, opencores_kbd);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -261,7 +261,6 @@ static int sun4i_lradc_probe(struct platform_device *pdev)
|
|||
if (error)
|
||||
return error;
|
||||
|
||||
platform_set_drvdata(pdev, lradc);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue