summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2022-11-18 23:42:53 +0100
committerLee Jones <lee@kernel.org>2022-12-07 13:27:22 +0000
commit773fb98fec5f7ae42254836391dd149e49427d9a (patch)
treed0cc46b0ea7f2c2d1ed75a36ef30433a1deb70fe
parent8df214715d056e88ae428f0312c49ecf46d93331 (diff)
downloadlinux-773fb98fec5f7ae42254836391dd149e49427d9a.tar.bz2
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: 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-440-uwe@kleine-koenig.org
-rw-r--r--drivers/mfd/max77620.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/mfd/max77620.c b/drivers/mfd/max77620.c
index a6661e07035b..0b1e9340210b 100644
--- a/drivers/mfd/max77620.c
+++ b/drivers/mfd/max77620.c
@@ -494,9 +494,9 @@ static void max77620_pm_power_off(void)
MAX77620_ONOFFCNFG1_SFT_RST);
}
-static int max77620_probe(struct i2c_client *client,
- const struct i2c_device_id *id)
+static int max77620_probe(struct i2c_client *client)
{
+ const struct i2c_device_id *id = i2c_client_get_device_id(client);
const struct regmap_config *rmap_config;
struct max77620_chip *chip;
const struct mfd_cell *mfd_cells;
@@ -701,7 +701,7 @@ static struct i2c_driver max77620_driver = {
.name = "max77620",
.pm = &max77620_pm_ops,
},
- .probe = max77620_probe,
+ .probe_new = max77620_probe,
.id_table = max77620_id,
};
builtin_i2c_driver(max77620_driver);