clk: versaclock3: Switch to use i2c_driver's probe callback
The previous mass switch of clk drivers done in commit 62279db5a3
("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>
This commit is contained in:
parent
6e9aff555d
commit
a53ef0550b
|
@ -1134,7 +1134,7 @@ static struct i2c_driver vc3_driver = {
|
|||
.name = "vc3",
|
||||
.of_match_table = of_match_ptr(dev_ids),
|
||||
},
|
||||
.probe_new = vc3_probe,
|
||||
.probe = vc3_probe,
|
||||
};
|
||||
module_i2c_driver(vc3_driver);
|
||||
|
||||
|
|
Loading…
Reference in New Issue