projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
81943ca
)
mfd: stmfx: Convert to i2c's .probe_new()
author
Uwe Kleine-König
<u.kleine-koenig@pengutronix.de>
Fri, 18 Nov 2022 22:43:14 +0000
(23:43 +0100)
committer
Lee Jones
<lee@kernel.org>
Wed, 7 Dec 2022 13:27:24 +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-461-uwe@kleine-koenig.org
drivers/mfd/stmfx.c
patch
|
blob
|
history
diff --git
a/drivers/mfd/stmfx.c
b/drivers/mfd/stmfx.c
index 5dd7d96884596f75e90877a1c4f768c8cf42ae30..025b8761e50fb9c0a5decc2329a44b15a48cd27e 100644
(file)
--- a/
drivers/mfd/stmfx.c
+++ b/
drivers/mfd/stmfx.c
@@
-410,8
+410,7
@@
static void stmfx_chip_exit(struct i2c_client *client)
}
}
-static int stmfx_probe(struct i2c_client *client,
- const struct i2c_device_id *id)
+static int stmfx_probe(struct i2c_client *client)
{
struct device *dev = &client->dev;
struct stmfx *stmfx;
@@
-556,7
+555,7
@@
static struct i2c_driver stmfx_driver = {
.of_match_table = stmfx_of_match,
.pm = &stmfx_dev_pm_ops,
},
- .probe = stmfx_probe,
+ .probe
_new
= stmfx_probe,
.remove = stmfx_remove,
};
module_i2c_driver(stmfx_driver);