media: i2c: ov01a10: Switch back to use struct i2c_driver::probe
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Mon, 26 Jun 2023 09:05:33 +0000 (11:05 +0200)
committerHans Verkuil <hverkuil-cisco@xs4all.nl>
Wed, 19 Jul 2023 10:57:51 +0000 (12:57 +0200)
struct i2c_driver::probe_new is about to go away. Switch the driver to
use the probe callback with the same prototype.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Reviewed-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
drivers/media/i2c/ov01a10.c

index de5bc19..2b9e1b3 100644 (file)
@@ -992,7 +992,7 @@ static struct i2c_driver ov01a10_i2c_driver = {
                .pm = &ov01a10_pm_ops,
                .acpi_match_table = ACPI_PTR(ov01a10_acpi_ids),
        },
-       .probe_new = ov01a10_probe,
+       .probe = ov01a10_probe,
        .remove = ov01a10_remove,
 };