Commit a403e589 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Lee Jones

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: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarLee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20221118224540.619276-458-uwe@kleine-koenig.org
parent e46b578c
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment