projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
784252b
)
ASoC: codecs: tas2780: Convert to i2c's .probe_new()
author
Uwe Kleine-König
<u.kleine-koenig@pengutronix.de>
Fri, 18 Nov 2022 22:45:38 +0000
(23:45 +0100)
committer
Mark Brown
<broonie@kernel.org>
Thu, 24 Nov 2022 19:20:26 +0000
(19:20 +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>
Link:
https://lore.kernel.org/r/20221118224540.619276-605-uwe@kleine-koenig.org
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/tas2780.c
patch
|
blob
|
history
diff --git
a/sound/soc/codecs/tas2780.c
b/sound/soc/codecs/tas2780.c
index a6db6f0e5431fd8f53a33de225fac330e9d38abe..9e3108fd35194faf2f7100b9d4a59b0e1dc3fea3 100644
(file)
--- a/
sound/soc/codecs/tas2780.c
+++ b/
sound/soc/codecs/tas2780.c
@@
-598,8
+598,7
@@
static int tas2780_parse_dt(struct device *dev, struct tas2780_priv *tas2780)
return 0;
}
-static int tas2780_i2c_probe(struct i2c_client *client,
- const struct i2c_device_id *id)
+static int tas2780_i2c_probe(struct i2c_client *client)
{
struct tas2780_priv *tas2780;
int result;
@@
-653,7
+652,7
@@
static struct i2c_driver tas2780_i2c_driver = {
.name = "tas2780",
.of_match_table = of_match_ptr(tas2780_of_match),
},
- .probe = tas2780_i2c_probe,
+ .probe
_new
= tas2780_i2c_probe,
.id_table = tas2780_i2c_id,
};
module_i2c_driver(tas2780_i2c_driver);