projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4d7b4de
)
leds: lm3697: Convert to i2c's .probe_new()
author
Uwe Kleine-König
<u.kleine-koenig@pengutronix.de>
Fri, 18 Nov 2022 22:40:10 +0000
(23:40 +0100)
committer
Lee Jones
<lee@kernel.org>
Mon, 30 Jan 2023 08:03:24 +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-277-uwe@kleine-koenig.org
drivers/leds/leds-lm3697.c
patch
|
blob
|
history
diff --git
a/drivers/leds/leds-lm3697.c
b/drivers/leds/leds-lm3697.c
index 71231a60eebce8cf208fdcc3dbe2853f211b93a1..10e904bf40a046e69e6a1f7221d15280b40fc733 100644
(file)
--- a/
drivers/leds/leds-lm3697.c
+++ b/
drivers/leds/leds-lm3697.c
@@
-299,8
+299,7
@@
child_out:
return ret;
}
-static int lm3697_probe(struct i2c_client *client,
- const struct i2c_device_id *id)
+static int lm3697_probe(struct i2c_client *client)
{
struct device *dev = &client->dev;
struct lm3697 *led;
@@
-377,7
+376,7
@@
static struct i2c_driver lm3697_driver = {
.name = "lm3697",
.of_match_table = of_lm3697_leds_match,
},
- .probe
= lm3697_probe,
+ .probe
_new
= lm3697_probe,
.remove = lm3697_remove,
.id_table = lm3697_id,
};