From: Uwe Kleine-König Date: Fri, 18 Nov 2022 22:43:11 +0000 (+0100) Subject: mfd: sec-core: Convert to i2c's .probe_new() X-Git-Tag: v6.2-rc1~30^2~116 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=a403e589705fa4b93732581450c5c05833105ae3;p=linux-2.6-block.git mfd: sec-core: Convert to i2c's .probe_new() The probe function doesn't make use of the i2c_device_id * parameter so it can be trivially converted. Signed-off-by: Uwe Kleine-König Signed-off-by: Lee Jones Link: https://lore.kernel.org/r/20221118224540.619276-458-uwe@kleine-koenig.org --- diff --git a/drivers/mfd/sec-core.c b/drivers/mfd/sec-core.c index 1fb29c45f5cf..6bf117b7193a 100644 --- a/drivers/mfd/sec-core.c +++ b/drivers/mfd/sec-core.c @@ -305,8 +305,7 @@ sec_pmic_i2c_parse_dt_pdata(struct device *dev) return pd; } -static int sec_pmic_probe(struct i2c_client *i2c, - const struct i2c_device_id *id) +static int sec_pmic_probe(struct i2c_client *i2c) { const struct regmap_config *regmap; struct sec_platform_data *pdata; @@ -498,7 +497,7 @@ static struct i2c_driver sec_pmic_driver = { .pm = &sec_pmic_pm_ops, .of_match_table = sec_dt_match, }, - .probe = sec_pmic_probe, + .probe_new = sec_pmic_probe, .shutdown = sec_pmic_shutdown, }; module_i2c_driver(sec_pmic_driver);