diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2022-11-18 23:43:14 +0100 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2022-12-07 14:27:24 +0100 |
commit | 05b62f4ca66d8c20da59ddc3fdc72bd973acb1b6 (patch) | |
tree | c3c5239fbdde18a6dc49524ebacd574af806abed /drivers/mfd/stmfx.c | |
parent | mfd: sky81452: Convert to i2c's .probe_new() (diff) | |
download | linux-05b62f4ca66d8c20da59ddc3fdc72bd973acb1b6.tar.xz linux-05b62f4ca66d8c20da59ddc3fdc72bd973acb1b6.zip |
mfd: stmfx: 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-461-uwe@kleine-koenig.org
Diffstat (limited to 'drivers/mfd/stmfx.c')
-rw-r--r-- | drivers/mfd/stmfx.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/mfd/stmfx.c b/drivers/mfd/stmfx.c index 5dd7d9688459..025b8761e50f 100644 --- a/drivers/mfd/stmfx.c +++ b/drivers/mfd/stmfx.c @@ -410,8 +410,7 @@ static void stmfx_chip_exit(struct i2c_client *client) } } -static int stmfx_probe(struct i2c_client *client, - const struct i2c_device_id *id) +static int stmfx_probe(struct i2c_client *client) { struct device *dev = &client->dev; struct stmfx *stmfx; @@ -556,7 +555,7 @@ static struct i2c_driver stmfx_driver = { .of_match_table = stmfx_of_match, .pm = &stmfx_dev_pm_ops, }, - .probe = stmfx_probe, + .probe_new = stmfx_probe, .remove = stmfx_remove, }; module_i2c_driver(stmfx_driver); |