Commit 020cf73b authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Mark Brown

regulator: da9121-regulator: 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>
Acked-for-MFD-by: default avatarLee Jones <lee@kernel.org>
Acked-for-Backlight-by: default avatarLee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20221118224540.619276-541-uwe@kleine-koenig.orgSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent c957387c
...@@ -1128,8 +1128,7 @@ static inline int da9121_of_get_id(struct device *dev) ...@@ -1128,8 +1128,7 @@ static inline int da9121_of_get_id(struct device *dev)
return (uintptr_t)id->data; return (uintptr_t)id->data;
} }
static int da9121_i2c_probe(struct i2c_client *i2c, static int da9121_i2c_probe(struct i2c_client *i2c)
const struct i2c_device_id *id)
{ {
struct da9121 *chip; struct da9121 *chip;
const int mask_all[4] = { 0xFF, 0xFF, 0xFF, 0xFF }; const int mask_all[4] = { 0xFF, 0xFF, 0xFF, 0xFF };
...@@ -1197,7 +1196,7 @@ static struct i2c_driver da9121_regulator_driver = { ...@@ -1197,7 +1196,7 @@ static struct i2c_driver da9121_regulator_driver = {
.name = "da9121", .name = "da9121",
.of_match_table = of_match_ptr(da9121_dt_ids), .of_match_table = of_match_ptr(da9121_dt_ids),
}, },
.probe = da9121_i2c_probe, .probe_new = da9121_i2c_probe,
.remove = da9121_i2c_remove, .remove = da9121_i2c_remove,
.id_table = da9121_i2c_id, .id_table = da9121_i2c_id,
}; };
......
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