Input: pcf8574_keypad - Convert to i2c's .probe_new()
The probe function doesn't make use of the i2c_device_id * parameter so it can be trivially converted. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Link: https://lore.kernel.org/r/20221118224540.619276-220-uwe@kleine-koenig.org Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
committed by
Dmitry Torokhov
parent
7f4a8e20e5
commit
f8630ccde5
@@ -80,7 +80,7 @@ static irqreturn_t pcf8574_kp_irq_handler(int irq, void *dev_id)
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static int pcf8574_kp_probe(struct i2c_client *client, const struct i2c_device_id *id)
|
||||
static int pcf8574_kp_probe(struct i2c_client *client)
|
||||
{
|
||||
int i, ret;
|
||||
struct input_dev *idev;
|
||||
@@ -209,7 +209,7 @@ static struct i2c_driver pcf8574_kp_driver = {
|
||||
.pm = &pcf8574_kp_pm_ops,
|
||||
#endif
|
||||
},
|
||||
.probe = pcf8574_kp_probe,
|
||||
.probe_new = pcf8574_kp_probe,
|
||||
.remove = pcf8574_kp_remove,
|
||||
.id_table = pcf8574_kp_id,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user