Quoting Uwe Kleine-König (2023-06-26 10:05:33) > 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@xxxxxxxxxxxxxx> Reviewed-by: Kieran Bingham <kieran.bingham+renesas@xxxxxxxxxxxxxxxx> I'll try to keep my eye open on incoming drivers too to spot these. Thanks -- Kieran > --- > drivers/media/i2c/ov01a10.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/media/i2c/ov01a10.c b/drivers/media/i2c/ov01a10.c > index de5bc19e715b..2b9e1b3a3bf4 100644 > --- a/drivers/media/i2c/ov01a10.c > +++ b/drivers/media/i2c/ov01a10.c > @@ -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, > }; > > > base-commit: cde0edf98f75221f299486e27a317aa02dc1cf7c > -- > 2.39.2 >