projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2c6aaf8
)
leds: tca6507: Convert to i2c's .probe_new()
author
Uwe Kleine-König
<u.kleine-koenig@pengutronix.de>
Fri, 18 Nov 2022 22:40:20 +0000
(23:40 +0100)
committer
Lee Jones
<lee@kernel.org>
Mon, 30 Jan 2023 08:03:31 +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-287-uwe@kleine-koenig.org
drivers/leds/leds-tca6507.c
patch
|
blob
|
history
diff --git
a/drivers/leds/leds-tca6507.c
b/drivers/leds/leds-tca6507.c
index 161bef65c6b7b88f19b5f2340a0a34cca336c4c7..46e76b8946519aaf2dc36689ba17be2b987a2748 100644
(file)
--- a/
drivers/leds/leds-tca6507.c
+++ b/
drivers/leds/leds-tca6507.c
@@
-728,8
+728,7
@@
static const struct of_device_id __maybe_unused of_tca6507_leds_match[] = {
};
MODULE_DEVICE_TABLE(of, of_tca6507_leds_match);
-static int tca6507_probe(struct i2c_client *client,
- const struct i2c_device_id *id)
+static int tca6507_probe(struct i2c_client *client)
{
struct device *dev = &client->dev;
struct i2c_adapter *adapter;
@@
-809,7
+808,7
@@
static struct i2c_driver tca6507_driver = {
.name = "leds-tca6507",
.of_match_table = of_match_ptr(of_tca6507_leds_match),
},
- .probe
= tca6507_probe,
+ .probe
_new
= tca6507_probe,
.remove = tca6507_remove,
.id_table = tca6507_id,
};