clk: Switch i2c drivers back to use .probe()
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Thu, 27 Apr 2023 12:55:31 +0000 (14:55 +0200)
committerStephen Boyd <sboyd@kernel.org>
Wed, 10 May 2023 21:05:34 +0000 (14:05 -0700)
After commit b8a1a4cd5a98 ("i2c: Provide a temporary .probe_new()
call-back type"), all drivers being converted to .probe_new() and then
03c835f498b5 ("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/20230427125531.622202-1-u.kleine-koenig@pengutronix.de
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
12 files changed:
drivers/clk/clk-cdce706.c
drivers/clk/clk-cdce925.c
drivers/clk/clk-cs2000-cp.c
drivers/clk/clk-max9485.c
drivers/clk/clk-renesas-pcie.c
drivers/clk/clk-si514.c
drivers/clk/clk-si5341.c
drivers/clk/clk-si5351.c
drivers/clk/clk-si544.c
drivers/clk/clk-si570.c
drivers/clk/clk-versaclock5.c
drivers/clk/clk-versaclock7.c

index d8bee81..627ca0e 100644 (file)
@@ -684,7 +684,7 @@ static struct i2c_driver cdce706_i2c_driver = {
                .name   = "cdce706",
                .of_match_table = of_match_ptr(cdce706_dt_match),
        },
-       .probe_new      = cdce706_probe,
+       .probe          = cdce706_probe,
        .id_table       = cdce706_id,
 };
 module_i2c_driver(cdce706_i2c_driver);
index 6350682..e0d22c2 100644 (file)
@@ -824,7 +824,7 @@ static struct i2c_driver cdce925_driver = {
                .name = "cdce925",
                .of_match_table = of_match_ptr(clk_cdce925_of_match),
        },
-       .probe_new      = cdce925_probe,
+       .probe          = cdce925_probe,
        .id_table       = cdce925_id,
 };
 module_i2c_driver(cdce925_driver);
index 320d399..b82fee6 100644 (file)
@@ -622,7 +622,7 @@ static struct i2c_driver cs2000_driver = {
                .pm     = &cs2000_pm_ops,
                .of_match_table = cs2000_of_match,
        },
-       .probe_new      = cs2000_probe,
+       .probe          = cs2000_probe,
        .remove         = cs2000_remove,
        .id_table       = cs2000_id,
 };
index 5f85b0a..be9020b 100644 (file)
@@ -376,7 +376,7 @@ static struct i2c_driver max9485_driver = {
                .pm             = &max9485_pm_ops,
                .of_match_table = max9485_dt_ids,
        },
-       .probe_new = max9485_i2c_probe,
+       .probe = max9485_i2c_probe,
        .id_table = max9485_i2c_ids,
 };
 module_i2c_driver(max9485_driver);
index 10d31c2..4159029 100644 (file)
@@ -413,7 +413,7 @@ static struct i2c_driver rs9_driver = {
                .pm     = &rs9_pm_ops,
                .of_match_table = clk_rs9_of_match,
        },
-       .probe_new      = rs9_probe,
+       .probe          = rs9_probe,
        .id_table       = rs9_id,
 };
 module_i2c_driver(rs9_driver);
index cabdd8e..e8c18af 100644 (file)
@@ -387,7 +387,7 @@ static struct i2c_driver si514_driver = {
                .name = "si514",
                .of_match_table = clk_si514_of_match,
        },
-       .probe_new      = si514_probe,
+       .probe          = si514_probe,
        .id_table       = si514_id,
 };
 module_i2c_driver(si514_driver);
index 0e528d7..dbd21e6 100644 (file)
@@ -1834,7 +1834,7 @@ static struct i2c_driver si5341_driver = {
                .name = "si5341",
                .of_match_table = clk_si5341_of_match,
        },
-       .probe_new      = si5341_probe,
+       .probe          = si5341_probe,
        .remove         = si5341_remove,
        .id_table       = si5341_id,
 };
index 4fcf705..7a09847 100644 (file)
@@ -1656,7 +1656,7 @@ static struct i2c_driver si5351_driver = {
                .name = "si5351",
                .of_match_table = of_match_ptr(si5351_dt_ids),
        },
-       .probe_new = si5351_i2c_probe,
+       .probe = si5351_i2c_probe,
        .id_table = si5351_i2c_ids,
 };
 module_i2c_driver(si5351_driver);
index 0897869..2292596 100644 (file)
@@ -520,7 +520,7 @@ static struct i2c_driver si544_driver = {
                .name = "si544",
                .of_match_table = clk_si544_of_match,
        },
-       .probe_new      = si544_probe,
+       .probe          = si544_probe,
        .id_table       = si544_id,
 };
 module_i2c_driver(si544_driver);
index 0b834e9..de0212f 100644 (file)
@@ -510,7 +510,7 @@ static struct i2c_driver si570_driver = {
                .name = "si570",
                .of_match_table = clk_si570_of_match,
        },
-       .probe_new      = si570_probe,
+       .probe          = si570_probe,
        .id_table       = si570_id,
 };
 module_i2c_driver(si570_driver);
index fa71a57..b1586f4 100644 (file)
@@ -1304,7 +1304,7 @@ static struct i2c_driver vc5_driver = {
                .pm     = &vc5_pm_ops,
                .of_match_table = clk_vc5_of_match,
        },
-       .probe_new      = vc5_probe,
+       .probe          = vc5_probe,
        .remove         = vc5_remove,
        .id_table       = vc5_id,
 };
index 8e4f86e..056513a 100644 (file)
@@ -1298,7 +1298,7 @@ static struct i2c_driver vc7_i2c_driver = {
                .name = "vc7",
                .of_match_table = vc7_of_match,
        },
-       .probe_new = vc7_probe,
+       .probe = vc7_probe,
        .remove = vc7_remove,
        .id_table = vc7_i2c_id,
 };