diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2023-05-15 20:27:52 +0200 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2023-06-15 10:19:37 +0200 |
commit | 9816d859239f6d037fef168bdfa1ea1c12e3a76e (patch) | |
tree | 74ba6751b5dabedd7d8f14449fc725fdb48050e3 /drivers/mfd/tps6507x.c | |
parent | mfd: Remove redundant dev_set_drvdata() from I2C drivers (diff) | |
download | linux-9816d859239f6d037fef168bdfa1ea1c12e3a76e.tar.xz linux-9816d859239f6d037fef168bdfa1ea1c12e3a76e.zip |
mfd: Switch i2c drivers back to use .probe()
After commit b8a1a4cd5a98 ("i2c: Provide a temporary .probe_new()
call-back type"), all drivers being converted to .probe_new() and then
03c835f498b5 ("i2c: Switch .probe() to not take an id parameter") convert
back to (the new) .probe() to be able to eventually drop .probe_new() from
struct i2c_driver.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/20230515182752.10050-1-u.kleine-koenig@pengutronix.de
Signed-off-by: Lee Jones <lee@kernel.org>
Diffstat (limited to 'drivers/mfd/tps6507x.c')
-rw-r--r-- | drivers/mfd/tps6507x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/tps6507x.c b/drivers/mfd/tps6507x.c index 500b594de316..9716bf703c7a 100644 --- a/drivers/mfd/tps6507x.c +++ b/drivers/mfd/tps6507x.c @@ -122,7 +122,7 @@ static struct i2c_driver tps6507x_i2c_driver = { .name = "tps6507x", .of_match_table = of_match_ptr(tps6507x_of_match), }, - .probe_new = tps6507x_i2c_probe, + .probe = tps6507x_i2c_probe, .id_table = tps6507x_i2c_id, }; |