diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2022-11-19 01:40:06 +0300 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2023-01-30 11:03:21 +0300 |
commit | 912bcc8af39c4d5313d8dd16ebb9066579502197 (patch) | |
tree | 8992675991253d12005d2f8df4ddd694c19a26e9 /drivers/leds | |
parent | 5d080668ba3ad5a7e68a4cb1c0709ae279d1a1d3 (diff) | |
download | linux-912bcc8af39c4d5313d8dd16ebb9066579502197.tar.xz |
leds: lm3532: 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: Lee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20221118224540.619276-273-uwe@kleine-koenig.org
Diffstat (limited to 'drivers/leds')
-rw-r--r-- | drivers/leds/leds-lm3532.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/leds/leds-lm3532.c b/drivers/leds/leds-lm3532.c index db64d44bcbbf..a08c09129a68 100644 --- a/drivers/leds/leds-lm3532.c +++ b/drivers/leds/leds-lm3532.c @@ -663,8 +663,7 @@ child_out: return ret; } -static int lm3532_probe(struct i2c_client *client, - const struct i2c_device_id *id) +static int lm3532_probe(struct i2c_client *client) { struct lm3532_data *drvdata; int ret = 0; @@ -727,7 +726,7 @@ static const struct i2c_device_id lm3532_id[] = { MODULE_DEVICE_TABLE(i2c, lm3532_id); static struct i2c_driver lm3532_i2c_driver = { - .probe = lm3532_probe, + .probe_new = lm3532_probe, .remove = lm3532_remove, .id_table = lm3532_id, .driver = { |