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

power: supply: sbs: 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 2adfc437
...@@ -162,8 +162,7 @@ static const struct power_supply_desc sbs_desc = { ...@@ -162,8 +162,7 @@ static const struct power_supply_desc sbs_desc = {
.get_property = sbs_get_property, .get_property = sbs_get_property,
}; };
static int sbs_probe(struct i2c_client *client, static int sbs_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
struct power_supply_config psy_cfg = {}; struct power_supply_config psy_cfg = {};
struct sbs_info *chip; struct sbs_info *chip;
...@@ -241,7 +240,7 @@ static const struct i2c_device_id sbs_id[] = { ...@@ -241,7 +240,7 @@ static const struct i2c_device_id sbs_id[] = {
MODULE_DEVICE_TABLE(i2c, sbs_id); MODULE_DEVICE_TABLE(i2c, sbs_id);
static struct i2c_driver sbs_driver = { static struct i2c_driver sbs_driver = {
.probe = sbs_probe, .probe_new = sbs_probe,
.id_table = sbs_id, .id_table = sbs_id,
.driver = { .driver = {
.name = "sbs-charger", .name = "sbs-charger",
......
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