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: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Lee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20221118224540.619276-426-uwe@kleine-koenig.org
This commit is contained in:
Uwe Kleine-König 2022-11-18 23:42:39 +01:00 committed by Lee Jones
parent 4c023a6ec3
commit 6887bb934c

View file

@ -488,9 +488,9 @@ static int da903x_add_subdevs(struct da903x_chip *chip,
return ret;
}
static int da903x_probe(struct i2c_client *client,
const struct i2c_device_id *id)
static int da903x_probe(struct i2c_client *client)
{
const struct i2c_device_id *id = i2c_client_get_device_id(client);
struct da903x_platform_data *pdata = dev_get_platdata(&client->dev);
struct da903x_chip *chip;
unsigned int tmp;
@ -543,7 +543,7 @@ static struct i2c_driver da903x_driver = {
.driver = {
.name = "da903x",
},
.probe = da903x_probe,
.probe_new = da903x_probe,
.remove = da903x_remove,
.id_table = da903x_id_table,
};