diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2022-11-18 23:43:30 +0100 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2022-12-07 14:27:26 +0100 |
commit | d85213be3397e16d15a29420a32f75450a096355 (patch) | |
tree | 11c0eecdaa6fc9916a6d0faa23e6f9b5c7210875 /drivers/mfd | |
parent | mfd: twl-core: Convert to i2c's .probe_new() (diff) | |
download | linux-d85213be3397e16d15a29420a32f75450a096355.tar.xz linux-d85213be3397e16d15a29420a32f75450a096355.zip |
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: 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-477-uwe@kleine-koenig.org
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/twl6040.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/mfd/twl6040.c b/drivers/mfd/twl6040.c index f429b8f00db6..dd9543f6213f 100644 --- a/drivers/mfd/twl6040.c +++ b/drivers/mfd/twl6040.c @@ -633,8 +633,7 @@ static struct regmap_irq_chip twl6040_irq_chip = { .mask_base = TWL6040_REG_INTMR, }; -static int twl6040_probe(struct i2c_client *client, - const struct i2c_device_id *id) +static int twl6040_probe(struct i2c_client *client) { struct device_node *node = client->dev.of_node; struct twl6040 *twl6040; @@ -833,7 +832,7 @@ static struct i2c_driver twl6040_driver = { .driver = { .name = "twl6040", }, - .probe = twl6040_probe, + .probe_new = twl6040_probe, .remove = twl6040_remove, .id_table = twl6040_i2c_id, }; |