mfd: 88pm800: Convert to i2c's .probe_new()

The probe function doesn't make use of the i2c_device_id * parameter so it
can be trivially converted.

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-414-uwe@kleine-koenig.org
This commit is contained in:
Uwe Kleine-König 2022-11-18 23:42:27 +01:00 committed by Lee Jones
parent 662233731d
commit b9420da884

View File

@ -528,8 +528,7 @@ out:
return ret;
}
static int pm800_probe(struct i2c_client *client,
const struct i2c_device_id *id)
static int pm800_probe(struct i2c_client *client)
{
int ret = 0;
struct pm80x_chip *chip;
@ -599,7 +598,7 @@ static struct i2c_driver pm800_driver = {
.name = "88PM800",
.pm = &pm80x_pm_ops,
},
.probe = pm800_probe,
.probe_new = pm800_probe,
.remove = pm800_remove,
.id_table = pm80x_id_table,
};