Input: migor_ts - 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-252-uwe@kleine-koenig.org Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
5a2b1cf32d
commit
ff3de86309
|
@ -116,8 +116,7 @@ static void migor_ts_close(struct input_dev *dev)
|
|||
enable_irq(priv->irq);
|
||||
}
|
||||
|
||||
static int migor_ts_probe(struct i2c_client *client,
|
||||
const struct i2c_device_id *idp)
|
||||
static int migor_ts_probe(struct i2c_client *client)
|
||||
{
|
||||
struct migor_ts_priv *priv;
|
||||
struct input_dev *input;
|
||||
|
@ -222,7 +221,7 @@ static struct i2c_driver migor_ts_driver = {
|
|||
.name = "migor_ts",
|
||||
.pm = &migor_ts_pm,
|
||||
},
|
||||
.probe = migor_ts_probe,
|
||||
.probe_new = migor_ts_probe,
|
||||
.remove = migor_ts_remove,
|
||||
.id_table = migor_ts_id,
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue