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

power: supply: z2_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 8a4f891b
...@@ -176,8 +176,7 @@ static int z2_batt_ps_init(struct z2_charger *charger, int props) ...@@ -176,8 +176,7 @@ static int z2_batt_ps_init(struct z2_charger *charger, int props)
return 0; return 0;
} }
static int z2_batt_probe(struct i2c_client *client, static int z2_batt_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
int ret = 0; int ret = 0;
int props = 1; /* POWER_SUPPLY_PROP_PRESENT */ int props = 1; /* POWER_SUPPLY_PROP_PRESENT */
...@@ -306,7 +305,7 @@ static struct i2c_driver z2_batt_driver = { ...@@ -306,7 +305,7 @@ static struct i2c_driver z2_batt_driver = {
.name = "z2-battery", .name = "z2-battery",
.pm = Z2_BATTERY_PM_OPS .pm = Z2_BATTERY_PM_OPS
}, },
.probe = z2_batt_probe, .probe_new = z2_batt_probe,
.remove = z2_batt_remove, .remove = z2_batt_remove,
.id_table = z2_batt_id, .id_table = z2_batt_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