Commit 90955588 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Lee Jones

leds: lm3697: 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 avatarLee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20221118224540.619276-277-uwe@kleine-koenig.org
parent 4d7b4def
...@@ -299,8 +299,7 @@ static int lm3697_probe_dt(struct lm3697 *priv) ...@@ -299,8 +299,7 @@ static int lm3697_probe_dt(struct lm3697 *priv)
return ret; return ret;
} }
static int lm3697_probe(struct i2c_client *client, static int lm3697_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
struct device *dev = &client->dev; struct device *dev = &client->dev;
struct lm3697 *led; struct lm3697 *led;
...@@ -377,7 +376,7 @@ static struct i2c_driver lm3697_driver = { ...@@ -377,7 +376,7 @@ static struct i2c_driver lm3697_driver = {
.name = "lm3697", .name = "lm3697",
.of_match_table = of_lm3697_leds_match, .of_match_table = of_lm3697_leds_match,
}, },
.probe = lm3697_probe, .probe_new = lm3697_probe,
.remove = lm3697_remove, .remove = lm3697_remove,
.id_table = lm3697_id, .id_table = lm3697_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