aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/clk/clk-renesas-pcie.c
diff options
context:
space:
mode:
authorStephen Kitt <steve@sk2.org>2022-04-07 17:18:31 +0200
committerStephen Boyd <sboyd@kernel.org>2022-04-22 19:28:09 -0700
commit5baa12cfc433ff514b05e289ef59b06a4de1ac16 (patch)
tree1565752b5f1aa132ebd37d3b40aec7172713ca67 /drivers/clk/clk-renesas-pcie.c
parentclk: si570: use i2c_match_id and simple i2c probe (diff)
downloadwireguard-linux-5baa12cfc433ff514b05e289ef59b06a4de1ac16.tar.xz
wireguard-linux-5baa12cfc433ff514b05e289ef59b06a4de1ac16.zip
clk: renesas-pcie: use simple i2c probe function
The i2c probe function here doesn't use the id information provided in its second argument, so the single-parameter i2c probe function ("probe_new") can be used instead. This avoids scanning the identifier tables during probes. Signed-off-by: Stephen Kitt <steve@sk2.org> Link: https://lore.kernel.org/r/20220407151831.2371706-11-steve@sk2.org Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/clk-renesas-pcie.c')
-rw-r--r--drivers/clk/clk-renesas-pcie.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/clk-renesas-pcie.c b/drivers/clk/clk-renesas-pcie.c
index 59d9cf0053eb..4f5df1fc74b4 100644
--- a/drivers/clk/clk-renesas-pcie.c
+++ b/drivers/clk/clk-renesas-pcie.c
@@ -213,7 +213,7 @@ rs9_of_clk_get(struct of_phandle_args *clkspec, void *data)
return rs9->clk_dif[idx];
}
-static int rs9_probe(struct i2c_client *client, const struct i2c_device_id *id)
+static int rs9_probe(struct i2c_client *client)
{
unsigned char name[5] = "DIF0";
struct rs9_driver_data *rs9;
@@ -312,7 +312,7 @@ static struct i2c_driver rs9_driver = {
.pm = &rs9_pm_ops,
.of_match_table = clk_rs9_of_match,
},
- .probe = rs9_probe,
+ .probe_new = rs9_probe,
.id_table = rs9_id,
};
module_i2c_driver(rs9_driver);