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 <u.kleine-koenig@pengutronix.de>
Signed-off-by: Lee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20221118224540.619276-458-uwe@kleine-koenig.org
This commit is contained in:
Uwe Kleine-König 2022-11-18 23:43:11 +01:00 committed by Lee Jones
parent e46b578cab
commit a403e58970

View File

@ -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);