summaryrefslogtreecommitdiffstats
path: root/drivers/mfd/rt5033.c
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2022-11-18 23:43:10 +0100
committerLee Jones <lee@kernel.org>2022-12-07 13:27:24 +0000
commite46b578cabb0365e8a91fba766d39d20153b82ce (patch)
tree90642fa0e5f02a8aabf05cf39c2b95e46583171a /drivers/mfd/rt5033.c
parent601e6d48ee3519648679177a0647dd3b3cbaefbb (diff)
downloadlinux-e46b578cabb0365e8a91fba766d39d20153b82ce.tar.bz2
mfd: rt5033: 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-457-uwe@kleine-koenig.org
Diffstat (limited to 'drivers/mfd/rt5033.c')
-rw-r--r--drivers/mfd/rt5033.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/mfd/rt5033.c b/drivers/mfd/rt5033.c
index f1236a9acf30..8bcf1c01348c 100644
--- a/drivers/mfd/rt5033.c
+++ b/drivers/mfd/rt5033.c
@@ -56,8 +56,7 @@ static const struct regmap_config rt5033_regmap_config = {
.max_register = RT5033_REG_END,
};
-static int rt5033_i2c_probe(struct i2c_client *i2c,
- const struct i2c_device_id *id)
+static int rt5033_i2c_probe(struct i2c_client *i2c)
{
struct rt5033_dev *rt5033;
unsigned int dev_id;
@@ -124,7 +123,7 @@ static struct i2c_driver rt5033_driver = {
.name = "rt5033",
.of_match_table = rt5033_dt_match,
},
- .probe = rt5033_i2c_probe,
+ .probe_new = rt5033_i2c_probe,
.id_table = rt5033_i2c_id,
};
module_i2c_driver(rt5033_driver);