Commit 6816c54b authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Lee Jones

mfd: rohm-bd718x7: 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/20221118224540.619276-455-uwe@kleine-koenig.org
parent 84163609
...@@ -127,8 +127,7 @@ static int bd718xx_init_press_duration(struct regmap *regmap, ...@@ -127,8 +127,7 @@ static int bd718xx_init_press_duration(struct regmap *regmap,
return 0; return 0;
} }
static int bd718xx_i2c_probe(struct i2c_client *i2c, static int bd718xx_i2c_probe(struct i2c_client *i2c)
const struct i2c_device_id *id)
{ {
struct regmap *regmap; struct regmap *regmap;
struct regmap_irq_chip_data *irq_data; struct regmap_irq_chip_data *irq_data;
...@@ -215,7 +214,7 @@ static struct i2c_driver bd718xx_i2c_driver = { ...@@ -215,7 +214,7 @@ static struct i2c_driver bd718xx_i2c_driver = {
.name = "rohm-bd718x7", .name = "rohm-bd718x7",
.of_match_table = bd718xx_of_match, .of_match_table = bd718xx_of_match,
}, },
.probe = bd718xx_i2c_probe, .probe_new = bd718xx_i2c_probe,
}; };
static int __init bd718xx_i2c_init(void) static int __init bd718xx_i2c_init(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment