projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d85213b
)
mfd: wl1273-core: Convert to i2c's .probe_new()
author
Uwe Kleine-König
<u.kleine-koenig@pengutronix.de>
Fri, 18 Nov 2022 22:43:31 +0000
(23:43 +0100)
committer
Lee Jones
<lee@kernel.org>
Wed, 7 Dec 2022 13:27:26 +0000
(13:27 +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-478-uwe@kleine-koenig.org
drivers/mfd/wl1273-core.c
patch
|
blob
|
history
diff --git
a/drivers/mfd/wl1273-core.c
b/drivers/mfd/wl1273-core.c
index 1ab5e15a65ebc1fc3459d0159df9853b196dfb5e..a5d6128fc67d43533947c0a8c20a0ea3bda45d09 100644
(file)
--- a/
drivers/mfd/wl1273-core.c
+++ b/
drivers/mfd/wl1273-core.c
@@
-156,8
+156,7
@@
static int wl1273_fm_set_volume(struct wl1273_core *core, unsigned int volume)
return 0;
}
-static int wl1273_core_probe(struct i2c_client *client,
- const struct i2c_device_id *id)
+static int wl1273_core_probe(struct i2c_client *client)
{
struct wl1273_fm_platform_data *pdata = dev_get_platdata(&client->dev);
struct wl1273_core *core;
@@
-233,7
+232,7
@@
static struct i2c_driver wl1273_core_driver = {
.driver = {
.name = WL1273_FM_DRIVER_NAME,
},
- .probe = wl1273_core_probe,
+ .probe
_new
= wl1273_core_probe,
.id_table = wl1273_driver_id_table,
};