Commit 6887bb93 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Lee Jones

mfd: da903x: 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: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarLee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20221118224540.619276-426-uwe@kleine-koenig.org
parent 4c023a6e
...@@ -488,9 +488,9 @@ static int da903x_add_subdevs(struct da903x_chip *chip, ...@@ -488,9 +488,9 @@ static int da903x_add_subdevs(struct da903x_chip *chip,
return ret; return ret;
} }
static int da903x_probe(struct i2c_client *client, static int da903x_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
const struct i2c_device_id *id = i2c_client_get_device_id(client);
struct da903x_platform_data *pdata = dev_get_platdata(&client->dev); struct da903x_platform_data *pdata = dev_get_platdata(&client->dev);
struct da903x_chip *chip; struct da903x_chip *chip;
unsigned int tmp; unsigned int tmp;
...@@ -543,7 +543,7 @@ static struct i2c_driver da903x_driver = { ...@@ -543,7 +543,7 @@ static struct i2c_driver da903x_driver = {
.driver = { .driver = {
.name = "da903x", .name = "da903x",
}, },
.probe = da903x_probe, .probe_new = da903x_probe,
.remove = da903x_remove, .remove = da903x_remove,
.id_table = da903x_id_table, .id_table = da903x_id_table,
}; };
......
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