projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1ba5916
)
leds: lp3952: Convert to i2c's .probe_new()
author
Uwe Kleine-König
<u.kleine-koenig@pengutronix.de>
Fri, 18 Nov 2022 22:40:12 +0000
(23:40 +0100)
committer
Lee Jones
<lee@kernel.org>
Mon, 30 Jan 2023 08:03:25 +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-279-uwe@kleine-koenig.org
drivers/leds/leds-lp3952.c
patch
|
blob
|
history
diff --git
a/drivers/leds/leds-lp3952.c
b/drivers/leds/leds-lp3952.c
index bf0ad1b5ce24953ed56415574a0530c8f0bb8e41..24b2e0f9080d95b794c4d78547651a4df7d0c9d7 100644
(file)
--- a/
drivers/leds/leds-lp3952.c
+++ b/
drivers/leds/leds-lp3952.c
@@
-207,8
+207,7
@@
static const struct regmap_config lp3952_regmap = {
.cache_type = REGCACHE_RBTREE,
};
-static int lp3952_probe(struct i2c_client *client,
- const struct i2c_device_id *id)
+static int lp3952_probe(struct i2c_client *client)
{
int status;
struct lp3952_led_array *priv;
@@
-274,7
+273,7
@@
static struct i2c_driver lp3952_i2c_driver = {
.driver = {
.name = LP3952_NAME,
},
- .probe = lp3952_probe,
+ .probe
_new
= lp3952_probe,
.remove = lp3952_remove,
.id_table = lp3952_id,
};