projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dc01357
)
leds: lm3692x: Convert to i2c's .probe_new()
author
Uwe Kleine-König
<u.kleine-koenig@pengutronix.de>
Fri, 18 Nov 2022 22:40:09 +0000
(23:40 +0100)
committer
Lee Jones
<lee@kernel.org>
Mon, 30 Jan 2023 08:03:23 +0000
(08:03 +0000)
.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
drivers/leds/leds-lm3692x.c
patch
|
blob
|
history
diff --git
a/drivers/leds/leds-lm3692x.c
b/drivers/leds/leds-lm3692x.c
index 54b4662bff41ebe5f92f410fefd2937164b57088..66126d0666f5bfd3b5833cf9ab0f7aab7aa8695c 100644
(file)
--- a/
drivers/leds/leds-lm3692x.c
+++ b/
drivers/leds/leds-lm3692x.c
@@
-456,9
+456,9
@@
static int lm3692x_probe_dt(struct lm3692x_led *led)
return ret;
}
-static int lm3692x_probe(struct i2c_client *client,
- const struct i2c_device_id *id)
+static int lm3692x_probe(struct i2c_client *client)
{
+ const struct i2c_device_id *id = i2c_client_get_device_id(client);
struct lm3692x_led *led;
int ret;
@@
-518,7
+518,7
@@
static struct i2c_driver lm3692x_driver = {
.name = "lm3692x",
.of_match_table = of_lm3692x_leds_match,
},
- .probe
= lm3692x_probe,
+ .probe
_new
= lm3692x_probe,
.remove = lm3692x_remove,
.id_table = lm3692x_id,
};