leds: lm3692x: 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: Lee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20221118224540.619276-276-uwe@kleine-koenig.org
This commit is contained in:
Uwe Kleine-König 2022-11-18 23:40:09 +01:00 committed by Lee Jones
parent dc01357c5c
commit 4d7b4def01
1 changed files with 3 additions and 3 deletions

View File

@ -456,9 +456,9 @@ static int lm3692x_probe_dt(struct lm3692x_led *led)
return ret; return ret;
} }
static int lm3692x_probe(struct i2c_client *client, static int lm3692x_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
const struct i2c_device_id *id = i2c_client_get_device_id(client);
struct lm3692x_led *led; struct lm3692x_led *led;
int ret; int ret;
@ -518,7 +518,7 @@ static struct i2c_driver lm3692x_driver = {
.name = "lm3692x", .name = "lm3692x",
.of_match_table = of_lm3692x_leds_match, .of_match_table = of_lm3692x_leds_match,
}, },
.probe = lm3692x_probe, .probe_new = lm3692x_probe,
.remove = lm3692x_remove, .remove = lm3692x_remove,
.id_table = lm3692x_id, .id_table = lm3692x_id,
}; };