diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2023-05-17 18:55:14 +0200 |
---|---|---|
committer | Sebastian Reichel <sebastian.reichel@collabora.com> | 2023-06-04 22:33:22 +0200 |
commit | fe20b1dcd2de47cdc983a47f4fb7a781e0b6c39c (patch) | |
tree | 602edfe57365c034e89a5634c1a324d1afc8b140 /drivers/power/supply/ltc2941-battery-gauge.c | |
parent | power: reset: add HAS_IOPORT dependencies (diff) | |
download | linux-fe20b1dcd2de47cdc983a47f4fb7a781e0b6c39c.tar.xz linux-fe20b1dcd2de47cdc983a47f4fb7a781e0b6c39c.zip |
power: supply: 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>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Diffstat (limited to 'drivers/power/supply/ltc2941-battery-gauge.c')
-rw-r--r-- | drivers/power/supply/ltc2941-battery-gauge.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/supply/ltc2941-battery-gauge.c b/drivers/power/supply/ltc2941-battery-gauge.c index d3fb42825983..cad39a8f829d 100644 --- a/drivers/power/supply/ltc2941-battery-gauge.c +++ b/drivers/power/supply/ltc2941-battery-gauge.c @@ -635,7 +635,7 @@ static struct i2c_driver ltc294x_driver = { .of_match_table = ltc294x_i2c_of_match, .pm = LTC294X_PM_OPS, }, - .probe_new = ltc294x_i2c_probe, + .probe = ltc294x_i2c_probe, .shutdown = ltc294x_i2c_shutdown, .id_table = ltc294x_i2c_id, }; |