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

power: supply: rt5033_battery: 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 d9ac265b
...@@ -112,8 +112,7 @@ static const struct power_supply_desc rt5033_battery_desc = { ...@@ -112,8 +112,7 @@ static const struct power_supply_desc rt5033_battery_desc = {
.num_properties = ARRAY_SIZE(rt5033_battery_props), .num_properties = ARRAY_SIZE(rt5033_battery_props),
}; };
static int rt5033_battery_probe(struct i2c_client *client, static int rt5033_battery_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
struct i2c_adapter *adapter = client->adapter; struct i2c_adapter *adapter = client->adapter;
struct power_supply_config psy_cfg = {}; struct power_supply_config psy_cfg = {};
...@@ -173,7 +172,7 @@ static struct i2c_driver rt5033_battery_driver = { ...@@ -173,7 +172,7 @@ static struct i2c_driver rt5033_battery_driver = {
.name = "rt5033-battery", .name = "rt5033-battery",
.of_match_table = rt5033_battery_of_match, .of_match_table = rt5033_battery_of_match,
}, },
.probe = rt5033_battery_probe, .probe_new = rt5033_battery_probe,
.remove = rt5033_battery_remove, .remove = rt5033_battery_remove,
.id_table = rt5033_battery_id, .id_table = rt5033_battery_id,
}; };
......
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