mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 14:12:06 +00:00
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:
parent
662233731d
commit
b9420da884
@ -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,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user