projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a08b318
)
pwm: pca9685: Convert to i2c's .probe_new()
author
Uwe Kleine-König
<u.kleine-koenig@pengutronix.de>
Fri, 2 Dec 2022 18:35:38 +0000
(19:35 +0100)
committer
Thierry Reding
<thierry.reding@gmail.com>
Tue, 6 Dec 2022 11:46:31 +0000
(12:46 +0100)
The probe function doesn't make use of the i2c_device_id * parameter so it
can be trivially converted.
Link:
https://lore.kernel.org/r/20221118224540.619276-538-uwe@kleine-koenig.org
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
drivers/pwm/pwm-pca9685.c
patch
|
blob
|
history
diff --git
a/drivers/pwm/pwm-pca9685.c
b/drivers/pwm/pwm-pca9685.c
index 41be244e7dd3d83a3777a729a93d0792c832e97f..3ed5a48ca58129285e2e8afa37c8d1daaf44414f 100644
(file)
--- a/
drivers/pwm/pwm-pca9685.c
+++ b/
drivers/pwm/pwm-pca9685.c
@@
-515,8
+515,7
@@
static const struct regmap_config pca9685_regmap_i2c_config = {
.cache_type = REGCACHE_NONE,
};
-static int pca9685_pwm_probe(struct i2c_client *client,
- const struct i2c_device_id *id)
+static int pca9685_pwm_probe(struct i2c_client *client)
{
struct pca9685 *pca;
unsigned int reg;
@@
-666,7
+665,7
@@
static struct i2c_driver pca9685_i2c_driver = {
.of_match_table = of_match_ptr(pca9685_dt_ids),
.pm = &pca9685_pwm_pm,
},
- .probe = pca9685_pwm_probe,
+ .probe
_new
= pca9685_pwm_probe,
.remove = pca9685_pwm_remove,
.id_table = pca9685_id,
};