regulator: isl6271a-regulator: Convert to i2c's .probe_new()

.probe_new() doesn't get the i2c_device_id * parameter, so determine
that explicitly in the probe function.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-for-MFD-by: Lee Jones <lee@kernel.org>
Acked-for-Backlight-by: Lee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20221118224540.619276-543-uwe@kleine-koenig.org
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Uwe Kleine-König 2022-11-18 23:44:36 +01:00 committed by Mark Brown
parent 655425650f
commit 69518d21de
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0

View File

@ -97,9 +97,9 @@ static const struct regulator_desc isl_rd[] = {
},
};
static int isl6271a_probe(struct i2c_client *i2c,
const struct i2c_device_id *id)
static int isl6271a_probe(struct i2c_client *i2c)
{
const struct i2c_device_id *id = i2c_client_get_device_id(i2c);
struct regulator_dev *rdev;
struct regulator_config config = { };
struct regulator_init_data *init_data = dev_get_platdata(&i2c->dev);
@ -148,7 +148,7 @@ static struct i2c_driver isl6271a_i2c_driver = {
.driver = {
.name = "isl6271a",
},
.probe = isl6271a_probe,
.probe_new = isl6271a_probe,
.id_table = isl6271a_id,
};