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

mfd: twl6040: 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>
Signed-off-by: default avatarLee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20221118224540.619276-477-uwe@kleine-koenig.org
parent c291d0e3
...@@ -633,8 +633,7 @@ static struct regmap_irq_chip twl6040_irq_chip = { ...@@ -633,8 +633,7 @@ static struct regmap_irq_chip twl6040_irq_chip = {
.mask_base = TWL6040_REG_INTMR, .mask_base = TWL6040_REG_INTMR,
}; };
static int twl6040_probe(struct i2c_client *client, static int twl6040_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
struct device_node *node = client->dev.of_node; struct device_node *node = client->dev.of_node;
struct twl6040 *twl6040; struct twl6040 *twl6040;
...@@ -833,7 +832,7 @@ static struct i2c_driver twl6040_driver = { ...@@ -833,7 +832,7 @@ static struct i2c_driver twl6040_driver = {
.driver = { .driver = {
.name = "twl6040", .name = "twl6040",
}, },
.probe = twl6040_probe, .probe_new = twl6040_probe,
.remove = twl6040_remove, .remove = twl6040_remove,
.id_table = twl6040_i2c_id, .id_table = twl6040_i2c_id,
}; };
......
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