summaryrefslogtreecommitdiffstats
path: root/drivers/mfd/palmas.c
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2022-11-18 23:43:03 +0100
committerLee Jones <lee@kernel.org>2022-12-07 13:27:23 +0000
commita5d6cbcfc7aec61df571972b5e7b93ec117de01c (patch)
treeefd52012ecd7c42c5952fc71cafc5d97f7db2aa6 /drivers/mfd/palmas.c
parenta5a689fa14558e1e7d7a57303539ed8c2bc37c3f (diff)
downloadlinux-stable-a5d6cbcfc7aec61df571972b5e7b93ec117de01c.tar.gz
linux-stable-a5d6cbcfc7aec61df571972b5e7b93ec117de01c.tar.bz2
linux-stable-a5d6cbcfc7aec61df571972b5e7b93ec117de01c.zip
mfd: palmas: 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-450-uwe@kleine-koenig.org
Diffstat (limited to 'drivers/mfd/palmas.c')
-rw-r--r--drivers/mfd/palmas.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/mfd/palmas.c b/drivers/mfd/palmas.c
index 8b7429bd2e3e..d26d82c85ba8 100644
--- a/drivers/mfd/palmas.c
+++ b/drivers/mfd/palmas.c
@@ -502,8 +502,7 @@ static const struct of_device_id of_palmas_match_tbl[] = {
};
MODULE_DEVICE_TABLE(of, of_palmas_match_tbl);
-static int palmas_i2c_probe(struct i2c_client *i2c,
- const struct i2c_device_id *id)
+static int palmas_i2c_probe(struct i2c_client *i2c)
{
struct palmas *palmas;
struct palmas_platform_data *pdata;
@@ -732,7 +731,7 @@ static struct i2c_driver palmas_i2c_driver = {
.name = "palmas",
.of_match_table = of_palmas_match_tbl,
},
- .probe = palmas_i2c_probe,
+ .probe_new = palmas_i2c_probe,
.remove = palmas_i2c_remove,
.id_table = palmas_i2c_id,
};