mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-16 18:26:42 +00:00
power: supply: bq27xxx: Convert to i2c's .probe_new()
.probe_new() doesn't get the i2c_device_id * parameter, so determine that explicitly in the probe function. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
This commit is contained in:
parent
79fc7c2660
commit
67f56c79a5
@ -136,9 +136,9 @@ static int bq27xxx_battery_i2c_bulk_write(struct bq27xxx_device_info *di,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int bq27xxx_battery_i2c_probe(struct i2c_client *client,
|
static int bq27xxx_battery_i2c_probe(struct i2c_client *client)
|
||||||
const struct i2c_device_id *id)
|
|
||||||
{
|
{
|
||||||
|
const struct i2c_device_id *id = i2c_client_get_device_id(client);
|
||||||
struct bq27xxx_device_info *di;
|
struct bq27xxx_device_info *di;
|
||||||
int ret;
|
int ret;
|
||||||
char *name;
|
char *name;
|
||||||
@ -295,7 +295,7 @@ static struct i2c_driver bq27xxx_battery_i2c_driver = {
|
|||||||
.name = "bq27xxx-battery",
|
.name = "bq27xxx-battery",
|
||||||
.of_match_table = of_match_ptr(bq27xxx_battery_i2c_of_match_table),
|
.of_match_table = of_match_ptr(bq27xxx_battery_i2c_of_match_table),
|
||||||
},
|
},
|
||||||
.probe = bq27xxx_battery_i2c_probe,
|
.probe_new = bq27xxx_battery_i2c_probe,
|
||||||
.remove = bq27xxx_battery_i2c_remove,
|
.remove = bq27xxx_battery_i2c_remove,
|
||||||
.id_table = bq27xxx_i2c_id_table,
|
.id_table = bq27xxx_i2c_id_table,
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user