power: supply: sbs: Convert to i2c's .probe_new()
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Fri, 18 Nov 2022 22:44:26 +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/sbs-charger.c

index b08f7d0c4181599d3e25e84ef920d633b6bc339f..75ebcbf0a7883750b009ef21a6bd10692f138b1a 100644 (file)
@@ -162,8 +162,7 @@ static const struct power_supply_desc sbs_desc = {
        .get_property = sbs_get_property,
 };
 
-static int sbs_probe(struct i2c_client *client,
-                    const struct i2c_device_id *id)
+static int sbs_probe(struct i2c_client *client)
 {
        struct power_supply_config psy_cfg = {};
        struct sbs_info *chip;
@@ -241,7 +240,7 @@ static const struct i2c_device_id sbs_id[] = {
 MODULE_DEVICE_TABLE(i2c, sbs_id);
 
 static struct i2c_driver sbs_driver = {
-       .probe          = sbs_probe,
+       .probe_new      = sbs_probe,
        .id_table       = sbs_id,
        .driver = {
                .name   = "sbs-charger",