mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 18:13:41 +02:00
power: supply: max14656: 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: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
This commit is contained in:
parent
97bdbe0d04
commit
b17018dee0
|
|
@ -234,8 +234,7 @@ static enum power_supply_property max14656_battery_props[] = {
|
|||
POWER_SUPPLY_PROP_MANUFACTURER,
|
||||
};
|
||||
|
||||
static int max14656_probe(struct i2c_client *client,
|
||||
const struct i2c_device_id *id)
|
||||
static int max14656_probe(struct i2c_client *client)
|
||||
{
|
||||
struct i2c_adapter *adapter = client->adapter;
|
||||
struct device *dev = &client->dev;
|
||||
|
|
@ -317,7 +316,7 @@ static struct i2c_driver max14656_i2c_driver = {
|
|||
.name = "max14656",
|
||||
.of_match_table = max14656_match_table,
|
||||
},
|
||||
.probe = max14656_probe,
|
||||
.probe_new = max14656_probe,
|
||||
.id_table = max14656_id,
|
||||
};
|
||||
module_i2c_driver(max14656_i2c_driver);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user