summaryrefslogtreecommitdiffstats
path: root/drivers/power/supply/ds2782_battery.c
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2023-05-17 18:55:14 +0200
committerSebastian Reichel <sebastian.reichel@collabora.com>2023-06-04 22:33:22 +0200
commitfe20b1dcd2de47cdc983a47f4fb7a781e0b6c39c (patch)
tree602edfe57365c034e89a5634c1a324d1afc8b140 /drivers/power/supply/ds2782_battery.c
parentpower: reset: add HAS_IOPORT dependencies (diff)
downloadlinux-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/ds2782_battery.c')
-rw-r--r--drivers/power/supply/ds2782_battery.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/supply/ds2782_battery.c b/drivers/power/supply/ds2782_battery.c
index 9b9619246902..85aa9c465aa4 100644
--- a/drivers/power/supply/ds2782_battery.c
+++ b/drivers/power/supply/ds2782_battery.c
@@ -458,7 +458,7 @@ static struct i2c_driver ds278x_battery_driver = {
.name = "ds2782-battery",
.pm = &ds278x_battery_pm_ops,
},
- .probe_new = ds278x_battery_probe,
+ .probe = ds278x_battery_probe,
.remove = ds278x_battery_remove,
.id_table = ds278x_id,
};