From 90fc660e8479c5da5bb99a4fb3e0d266fa041b15 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Uwe=20Kleine-K=C3=B6nig?= Date: Mon, 26 Jun 2023 10:51:45 +0200 Subject: [PATCH] hwmon: max31827: Switch back to use struct i2c_driver::probe MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 Link: https://lore.kernel.org/r/20230626085145.554616-1-u.kleine-koenig@pengutronix.de Signed-off-by: Guenter Roeck --- drivers/hwmon/max31827.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/hwmon/max31827.c b/drivers/hwmon/max31827.c index 7735e80..602f4e4 100644 --- a/drivers/hwmon/max31827.c +++ b/drivers/hwmon/max31827.c @@ -456,7 +456,7 @@ static struct i2c_driver max31827_driver = { .name = "max31827", .of_match_table = max31827_of_match, }, - .probe_new = max31827_probe, + .probe = max31827_probe, .id_table = max31827_i2c_ids, }; module_i2c_driver(max31827_driver); -- 2.7.4