projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5d08066
)
leds: lm3532: Convert to i2c's .probe_new()
author
Uwe Kleine-König
<u.kleine-koenig@pengutronix.de>
Fri, 18 Nov 2022 22:40:06 +0000
(23:40 +0100)
committer
Lee Jones
<lee@kernel.org>
Mon, 30 Jan 2023 08:03:21 +0000
(08:03 +0000)
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
drivers/leds/leds-lm3532.c
patch
|
blob
|
history
diff --git
a/drivers/leds/leds-lm3532.c
b/drivers/leds/leds-lm3532.c
index db64d44bcbbfb47deb097c6400551257c0ea326f..a08c09129a68b3c77e5b6b7a67c17b6c7c15c56a 100644
(file)
--- 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 = {