From: Uwe Kleine-König Date: Wed, 16 Aug 2023 17:19:44 +0000 (+0200) Subject: fsi: i2cr: Switch to use struct i2c_driver's .probe() X-Git-Tag: v6.6.17~4035^2~31 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b587cb726467a9d1c62b4b61c284966fe677c040;p=platform%2Fkernel%2Flinux-rpi.git fsi: i2cr: Switch to use struct i2c_driver's .probe() 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 Reviewed-by: Eddie James Reviewed-by: Joel Stanley Link: https://lore.kernel.org/r/20230816171944.123705-1-u.kleine-koenig@pengutronix.de Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/fsi/fsi-master-i2cr.c b/drivers/fsi/fsi-master-i2cr.c index 61659c2..40f1f4d 100644 --- a/drivers/fsi/fsi-master-i2cr.c +++ b/drivers/fsi/fsi-master-i2cr.c @@ -301,7 +301,7 @@ static const struct of_device_id i2cr_ids[] = { MODULE_DEVICE_TABLE(of, i2cr_ids); static struct i2c_driver i2cr_driver = { - .probe_new = i2cr_probe, + .probe = i2cr_probe, .remove = i2cr_remove, .driver = { .name = "fsi-master-i2cr",