Commit 959ecba7 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Lee Jones
Browse files

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: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: default avatarMatti Vaittinen <mazziesaccount@gmail.com>
Signed-off-by: default avatarLee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20221121102454.15664-1-u.kleine-koenig@pengutronix.de
parent 65f15e43
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -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);