Commit 773fb98f authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Lee Jones

mfd: max77620: 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-440-uwe@kleine-koenig.org
parent 8df21471
...@@ -494,9 +494,9 @@ static void max77620_pm_power_off(void) ...@@ -494,9 +494,9 @@ static void max77620_pm_power_off(void)
MAX77620_ONOFFCNFG1_SFT_RST); MAX77620_ONOFFCNFG1_SFT_RST);
} }
static int max77620_probe(struct i2c_client *client, static int max77620_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
const struct i2c_device_id *id = i2c_client_get_device_id(client);
const struct regmap_config *rmap_config; const struct regmap_config *rmap_config;
struct max77620_chip *chip; struct max77620_chip *chip;
const struct mfd_cell *mfd_cells; const struct mfd_cell *mfd_cells;
...@@ -701,7 +701,7 @@ static struct i2c_driver max77620_driver = { ...@@ -701,7 +701,7 @@ static struct i2c_driver max77620_driver = {
.name = "max77620", .name = "max77620",
.pm = &max77620_pm_ops, .pm = &max77620_pm_ops,
}, },
.probe = max77620_probe, .probe_new = max77620_probe,
.id_table = max77620_id, .id_table = max77620_id,
}; };
builtin_i2c_driver(max77620_driver); builtin_i2c_driver(max77620_driver);
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