summaryrefslogtreecommitdiffstats
path: root/drivers/mfd/rohm-bd9576.c
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2022-11-21 11:24:54 +0100
committerLee Jones <lee@kernel.org>2022-12-08 12:36:49 +0000
commit959ecba7f5b7a821fc3bf742223f58c489db4bee (patch)
tree6f36fd6832a484a5301dfeedd3c3750bb6775f59 /drivers/mfd/rohm-bd9576.c
parent65f15e43d9c2e1c263617c9c21501f3b7d09728d (diff)
downloadlinux-959ecba7f5b7a821fc3bf742223f58c489db4bee.tar.bz2
mfd: rohm-bd9576: 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> Acked-by: Matti Vaittinen <mazziesaccount@gmail.com> Signed-off-by: Lee Jones <lee@kernel.org> Link: https://lore.kernel.org/r/20221121102454.15664-1-u.kleine-koenig@pengutronix.de
Diffstat (limited to 'drivers/mfd/rohm-bd9576.c')
-rw-r--r--drivers/mfd/rohm-bd9576.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/mfd/rohm-bd9576.c b/drivers/mfd/rohm-bd9576.c
index f37cd4f27aeb..c854ab5bcd80 100644
--- a/drivers/mfd/rohm-bd9576.c
+++ b/drivers/mfd/rohm-bd9576.c
@@ -88,8 +88,7 @@ static struct regmap_irq_chip bd9576_irq_chip = {
.irq_reg_stride = 1,
};
-static int bd957x_i2c_probe(struct i2c_client *i2c,
- const struct i2c_device_id *id)
+static int bd957x_i2c_probe(struct i2c_client *i2c)
{
int ret;
struct regmap *regmap;
@@ -180,7 +179,7 @@ static struct i2c_driver bd957x_drv = {
.name = "rohm-bd957x",
.of_match_table = bd957x_of_match,
},
- .probe = &bd957x_i2c_probe,
+ .probe_new = &bd957x_i2c_probe,
};
module_i2c_driver(bd957x_drv);