Skip to content

Commit a53ef05

Browse files
Uwe Kleine-Königbebarino
authored andcommitted
clk: versaclock3: Switch to use i2c_driver's probe callback
The previous mass switch of clk drivers done in commit 62279db ("clk: Switch i2c drivers back to use .probe()") was based on v6.4-rc1 Since then this driver was added which needs to be converted back in the same way before eventually .probe_new() can be dropped from struct i2c_driver. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Link: https://lore.kernel.org/r/20230721071846.111663-1-u.kleine-koenig@pengutronix.de Signed-off-by: Stephen Boyd <sboyd@kernel.org>
1 parent 6e9aff5 commit a53ef05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/clk/clk-versaclock3.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1134,7 +1134,7 @@ static struct i2c_driver vc3_driver = {
11341134
.name = "vc3",
11351135
.of_match_table = of_match_ptr(dev_ids),
11361136
},
1137-
.probe_new = vc3_probe,
1137+
.probe = vc3_probe,
11381138
};
11391139
module_i2c_driver(vc3_driver);
11401140

0 commit comments

Comments
 (0)