Input: migor_ts - Convert to i2c's .probe_new()
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Fri, 18 Nov 2022 22:39:45 +0000 (23:39 +0100)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Fri, 2 Dec 2022 22:53:46 +0000 (14:53 -0800)
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>
drivers/input/touchscreen/migor_ts.c

index 79cd660..ff0f605 100644 (file)
@@ -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,
 };