Skip to content

Commit

Permalink
w1: ds2482: Switch back to use struct i2c_driver's .probe()
Browse files Browse the repository at this point in the history
After commit b8a1a4c ("i2c: Provide a temporary .probe_new()
call-back type"), all drivers being converted to .probe_new() and then
commit 03c835f ("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.

Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/lkml/20230612072807.839689-1-u.kleine-koenig@pengutronix.de/
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
  • Loading branch information
Uwe Kleine-König authored and wsakernel committed Sep 13, 2023
1 parent 0bb80ec commit 3a7d263
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/w1/masters/ds2482.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
Expand Down

0 comments on commit 3a7d263

Please sign in to comment.