mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-25 07:14:36 +08:00
mfd: adp5520: 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-by: Michael Hennerich <michael.hennerich@analog.com> Signed-off-by: Lee Jones <lee@kernel.org> Link: https://lore.kernel.org/r/20221118224540.619276-418-uwe@kleine-koenig.org
This commit is contained in:
parent
75a4504e49
commit
48c2c36686
@ -204,9 +204,9 @@ static int adp5520_remove_subdevs(struct adp5520_chip *chip)
|
|||||||
return device_for_each_child(chip->dev, NULL, __remove_subdev);
|
return device_for_each_child(chip->dev, NULL, __remove_subdev);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int adp5520_probe(struct i2c_client *client,
|
static int adp5520_probe(struct i2c_client *client)
|
||||||
const struct i2c_device_id *id)
|
|
||||||
{
|
{
|
||||||
|
const struct i2c_device_id *id = i2c_client_get_device_id(client);
|
||||||
struct adp5520_platform_data *pdata = dev_get_platdata(&client->dev);
|
struct adp5520_platform_data *pdata = dev_get_platdata(&client->dev);
|
||||||
struct platform_device *pdev;
|
struct platform_device *pdev;
|
||||||
struct adp5520_chip *chip;
|
struct adp5520_chip *chip;
|
||||||
@ -342,7 +342,7 @@ static struct i2c_driver adp5520_driver = {
|
|||||||
.pm = &adp5520_pm,
|
.pm = &adp5520_pm,
|
||||||
.suppress_bind_attrs = true,
|
.suppress_bind_attrs = true,
|
||||||
},
|
},
|
||||||
.probe = adp5520_probe,
|
.probe_new = adp5520_probe,
|
||||||
.id_table = adp5520_id,
|
.id_table = adp5520_id,
|
||||||
};
|
};
|
||||||
builtin_i2c_driver(adp5520_driver);
|
builtin_i2c_driver(adp5520_driver);
|
||||||
|
Loading…
Reference in New Issue
Block a user