projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6900cd2
)
leds: blinkm: Convert to i2c's .probe_new()
author
Uwe Kleine-König
<u.kleine-koenig@pengutronix.de>
Fri, 18 Nov 2022 22:40:03 +0000
(23:40 +0100)
committer
Lee Jones
<lee@kernel.org>
Mon, 30 Jan 2023 08:03:18 +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-270-uwe@kleine-koenig.org
drivers/leds/leds-blinkm.c
patch
|
blob
|
history
diff --git
a/drivers/leds/leds-blinkm.c
b/drivers/leds/leds-blinkm.c
index e19cc8a7b7cac2c997700e4d371ebf8e9436d241..37f2f32ae42d77b9c0cf75943a06dcbbc75cc5c5 100644
(file)
--- a/
drivers/leds/leds-blinkm.c
+++ b/
drivers/leds/leds-blinkm.c
@@
-565,8
+565,7
@@
static int blinkm_detect(struct i2c_client *client, struct i2c_board_info *info)
return 0;
}
-static int blinkm_probe(struct i2c_client *client,
- const struct i2c_device_id *id)
+static int blinkm_probe(struct i2c_client *client)
{
struct blinkm_data *data;
struct blinkm_led *led[3];
@@
-731,7
+730,7
@@
static struct i2c_driver blinkm_driver = {
.driver = {
.name = "blinkm",
},
- .probe = blinkm_probe,
+ .probe
_new
= blinkm_probe,
.remove = blinkm_remove,
.id_table = blinkm_id,
.detect = blinkm_detect,