Commit 8a4f891b authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Sebastian Reichel

power: supply: ucs1002: Convert to i2c's .probe_new()

The probe function doesn't make use of the i2c_device_id * parameter so it
can be trivially converted.
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarSebastian Reichel <sebastian.reichel@collabora.com>
parent 6d43a4b0
...@@ -532,8 +532,7 @@ static const struct regulator_desc ucs1002_regulator_descriptor = { ...@@ -532,8 +532,7 @@ static const struct regulator_desc ucs1002_regulator_descriptor = {
.n_voltages = 1, .n_voltages = 1,
}; };
static int ucs1002_probe(struct i2c_client *client, static int ucs1002_probe(struct i2c_client *client)
const struct i2c_device_id *dev_id)
{ {
struct device *dev = &client->dev; struct device *dev = &client->dev;
struct power_supply_config charger_config = {}; struct power_supply_config charger_config = {};
...@@ -681,7 +680,7 @@ static struct i2c_driver ucs1002_driver = { ...@@ -681,7 +680,7 @@ static struct i2c_driver ucs1002_driver = {
.name = "ucs1002", .name = "ucs1002",
.of_match_table = ucs1002_of_match, .of_match_table = ucs1002_of_match,
}, },
.probe = ucs1002_probe, .probe_new = ucs1002_probe,
}; };
module_i2c_driver(ucs1002_driver); module_i2c_driver(ucs1002_driver);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment