mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
pinctrl: Switch i2c drivers 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> Link: https://lore.kernel.org/r/20230525204258.711186-1-u.kleine-koenig@pengutronix.de Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
6171212e9f
commit
d857253173
@ -1442,7 +1442,7 @@ static struct i2c_driver cy8c95x0_driver = {
|
||||
.of_match_table = cy8c95x0_dt_ids,
|
||||
.acpi_match_table = cy8c95x0_acpi_ids,
|
||||
},
|
||||
.probe_new = cy8c95x0_probe,
|
||||
.probe = cy8c95x0_probe,
|
||||
.remove = cy8c95x0_remove,
|
||||
.id_table = cy8c95x0_id,
|
||||
.detect = cy8c95x0_detect,
|
||||
|
@ -101,7 +101,7 @@ static struct i2c_driver mcp230xx_driver = {
|
||||
.name = "mcp230xx",
|
||||
.of_match_table = mcp23s08_i2c_of_match,
|
||||
},
|
||||
.probe_new = mcp230xx_probe,
|
||||
.probe = mcp230xx_probe,
|
||||
.id_table = mcp230xx_id,
|
||||
};
|
||||
|
||||
|
@ -1262,7 +1262,7 @@ static struct i2c_driver sx150x_driver = {
|
||||
.name = "sx150x-pinctrl",
|
||||
.of_match_table = sx150x_of_match,
|
||||
},
|
||||
.probe_new = sx150x_probe,
|
||||
.probe = sx150x_probe,
|
||||
.id_table = sx150x_id,
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user