drm/i2c/tda9950: Convert to i2c's .probe_new()
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Fri, 18 Nov 2022 22:36:14 +0000 (23:36 +0100)
committerJavier Martinez Canillas <javierm@redhat.com>
Tue, 10 Jan 2023 10:04:58 +0000 (11:04 +0100)
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>
Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20221118224540.619276-41-uwe@kleine-koenig.org
drivers/gpu/drm/i2c/tda9950.c

index 9ed54e7..b8c143e 100644 (file)
@@ -375,8 +375,7 @@ static void tda9950_cec_del(void *data)
        cec_delete_adapter(priv->adap);
 }
 
-static int tda9950_probe(struct i2c_client *client,
-                        const struct i2c_device_id *id)
+static int tda9950_probe(struct i2c_client *client)
 {
        struct tda9950_glue *glue = client->dev.platform_data;
        struct device *dev = &client->dev;
@@ -493,7 +492,7 @@ static struct i2c_device_id tda9950_ids[] = {
 MODULE_DEVICE_TABLE(i2c, tda9950_ids);
 
 static struct i2c_driver tda9950_driver = {
-       .probe = tda9950_probe,
+       .probe_new = tda9950_probe,
        .remove = tda9950_remove,
        .driver = {
                .name = "tda9950",