power: supply: rt5033_battery: Convert to i2c's .probe_new()
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Fri, 18 Nov 2022 22:44:24 +0000 (23:44 +0100)
committerSebastian Reichel <sebastian.reichel@collabora.com>
Sun, 20 Nov 2022 19:12:17 +0000 (20:12 +0100)
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: Sebastian Reichel <sebastian.reichel@collabora.com>
drivers/power/supply/rt5033_battery.c

index 736dec608ff6d9e66c2cbd4b776a26faed46d5f4..5c04cf30521931c74d52a39cabd502553011faf0 100644 (file)
@@ -112,8 +112,7 @@ static const struct power_supply_desc rt5033_battery_desc = {
        .num_properties = ARRAY_SIZE(rt5033_battery_props),
 };
 
-static int rt5033_battery_probe(struct i2c_client *client,
-               const struct i2c_device_id *id)
+static int rt5033_battery_probe(struct i2c_client *client)
 {
        struct i2c_adapter *adapter = client->adapter;
        struct power_supply_config psy_cfg = {};
@@ -173,7 +172,7 @@ static struct i2c_driver rt5033_battery_driver = {
                .name = "rt5033-battery",
                .of_match_table = rt5033_battery_of_match,
        },
-       .probe = rt5033_battery_probe,
+       .probe_new = rt5033_battery_probe,
        .remove = rt5033_battery_remove,
        .id_table = rt5033_battery_id,
 };