Skip to content

Commit 16d4f53

Browse files
Uwe Kleine-Königbebarino
authored andcommitted
clk: si521xx: Switch i2c driver back to use .probe()
After commit b8a1a4c ("i2c: Provide a temporary .probe_new() call-back type"), all drivers being converted to .probe_new() and then 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. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Link: https://lore.kernel.org/r/20230526060955.1130253-1-u.kleine-koenig@pengutronix.de Signed-off-by: Stephen Boyd <sboyd@kernel.org>
1 parent 62279db commit 16d4f53

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/clk/clk-si521xx.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ static struct i2c_driver si521xx_driver = {
385385
.pm = &si521xx_pm_ops,
386386
.of_match_table = clk_si521xx_of_match,
387387
},
388-
.probe_new = si521xx_probe,
388+
.probe = si521xx_probe,
389389
.id_table = si521xx_id,
390390
};
391391
module_i2c_driver(si521xx_driver);

0 commit comments

Comments
 (0)