mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
watchdog: ziirave_wdt: Switch i2c driver back to use .probe()
After commitb8a1a4cd5a
("i2c: Provide a temporary .probe_new() call-back type"), all drivers being converted to .probe_new() and then03c835f498
("i2c: Switch .probe() to not take an id parameter") convert back to (the new) .probe() to be able to eventually drop .probe_new() from struct i2c_driver. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Link: https://lkml.kernel.org/r/20230525210837.735447-1-u.kleine-koenig@pengutronix.de Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
This commit is contained in:
parent
8d2e149ed6
commit
6cf2cc304f
@ -731,7 +731,7 @@ static struct i2c_driver ziirave_wdt_driver = {
|
||||
.name = "ziirave_wdt",
|
||||
.of_match_table = zrv_wdt_of_match,
|
||||
},
|
||||
.probe_new = ziirave_wdt_probe,
|
||||
.probe = ziirave_wdt_probe,
|
||||
.remove = ziirave_wdt_remove,
|
||||
.id_table = ziirave_wdt_id,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user