mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
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:
parent
655425650f
commit
69518d21de
@ -97,9 +97,9 @@ static const struct regulator_desc isl_rd[] = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static int isl6271a_probe(struct i2c_client *i2c,
|
static int isl6271a_probe(struct i2c_client *i2c)
|
||||||
const struct i2c_device_id *id)
|
|
||||||
{
|
{
|
||||||
|
const struct i2c_device_id *id = i2c_client_get_device_id(i2c);
|
||||||
struct regulator_dev *rdev;
|
struct regulator_dev *rdev;
|
||||||
struct regulator_config config = { };
|
struct regulator_config config = { };
|
||||||
struct regulator_init_data *init_data = dev_get_platdata(&i2c->dev);
|
struct regulator_init_data *init_data = dev_get_platdata(&i2c->dev);
|
||||||
@ -148,7 +148,7 @@ static struct i2c_driver isl6271a_i2c_driver = {
|
|||||||
.driver = {
|
.driver = {
|
||||||
.name = "isl6271a",
|
.name = "isl6271a",
|
||||||
},
|
},
|
||||||
.probe = isl6271a_probe,
|
.probe_new = isl6271a_probe,
|
||||||
.id_table = isl6271a_id,
|
.id_table = isl6271a_id,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user