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

index ef673ec3db568a16c4ff99278cde344fe209e45b..836d44c9fb74f75cddafc5472d256ef7025cfb69 100644 (file)
@@ -532,8 +532,7 @@ static const struct regulator_desc ucs1002_regulator_descriptor = {
        .n_voltages     = 1,
 };
 
-static int ucs1002_probe(struct i2c_client *client,
-                        const struct i2c_device_id *dev_id)
+static int ucs1002_probe(struct i2c_client *client)
 {
        struct device *dev = &client->dev;
        struct power_supply_config charger_config = {};
@@ -681,7 +680,7 @@ static struct i2c_driver ucs1002_driver = {
                   .name = "ucs1002",
                   .of_match_table = ucs1002_of_match,
        },
-       .probe = ucs1002_probe,
+       .probe_new = ucs1002_probe,
 };
 module_i2c_driver(ucs1002_driver);