mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] w1: ds2482: Switch back to use struct i2c_driver's .probe()
@ 2023-06-12  7:28 Uwe Kleine-König
  2023-06-12 20:10 ` Krzysztof Kozlowski
  2023-06-13  8:04 ` Andi Shyti
  0 siblings, 2 replies; 8+ messages in thread
From: Uwe Kleine-König @ 2023-06-12  7:28 UTC (permalink / raw)
  To: Krzysztof Kozlowski; +Cc: linux-kernel, kernel

After commit b8a1a4cd5a98 ("i2c: Provide a temporary .probe_new()
call-back type"), all drivers being converted to .probe_new() and then
commit 03c835f498b5 ("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>
---
 drivers/w1/masters/ds2482.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/w1/masters/ds2482.c b/drivers/w1/masters/ds2482.c
index c1de8a92e144..b2d76c1784bd 100644
--- a/drivers/w1/masters/ds2482.c
+++ b/drivers/w1/masters/ds2482.c
@@ -551,7 +551,7 @@ static struct i2c_driver ds2482_driver = {
 	.driver = {
 		.name	= "ds2482",
 	},
-	.probe_new	= ds2482_probe,
+	.probe		= ds2482_probe,
 	.remove		= ds2482_remove,
 	.id_table	= ds2482_id,
 };

base-commit: ac9a78681b921877518763ba0e89202254349d1b
-- 
2.39.2


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2023-07-26 19:16 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-12  7:28 [PATCH] w1: ds2482: Switch back to use struct i2c_driver's .probe() Uwe Kleine-König
2023-06-12 20:10 ` Krzysztof Kozlowski
2023-06-13  7:02   ` Uwe Kleine-König
2023-06-13  8:06     ` Krzysztof Kozlowski
2023-07-20  8:52       ` Uwe Kleine-König
2023-07-26  8:21         ` Krzysztof Kozlowski
2023-07-26 19:16           ` Uwe Kleine-König
2023-06-13  8:04 ` Andi Shyti

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®