diff options
author | Stephen Kitt <steve@sk2.org> | 2022-04-05 14:24:11 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2022-04-06 23:37:53 +0100 |
commit | 97b0b6e3fb8a390205f3266b1fba3e195b9edf30 (patch) | |
tree | 6adc33026cf9df32f0a962f6ec2d6fe71d3b779a /sound/soc/codecs/wm8804-i2c.c | |
parent | 6b84012ef242c8793c1fdcc002db48c822bb641b (diff) | |
download | lwn-97b0b6e3fb8a390205f3266b1fba3e195b9edf30.tar.gz lwn-97b0b6e3fb8a390205f3266b1fba3e195b9edf30.zip |
ASoC: wm*: use simple i2c probe function
The i2c probe functions here don't use the id information provided in
their second argument, so the single-parameter i2c probe function
("probe_new") can be used instead.
wm8731.c is excluded and will be submitted separately.
This avoids scanning the identifier tables during probes.
Signed-off-by: Stephen Kitt <steve@sk2.org>
Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20220405122411.2096387-1-steve@sk2.org
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/wm8804-i2c.c')
-rw-r--r-- | sound/soc/codecs/wm8804-i2c.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sound/soc/codecs/wm8804-i2c.c b/sound/soc/codecs/wm8804-i2c.c index f97a75e64166..04dc9fb5afb4 100644 --- a/sound/soc/codecs/wm8804-i2c.c +++ b/sound/soc/codecs/wm8804-i2c.c @@ -14,8 +14,7 @@ #include "wm8804.h" -static int wm8804_i2c_probe(struct i2c_client *i2c, - const struct i2c_device_id *id) +static int wm8804_i2c_probe(struct i2c_client *i2c) { struct regmap *regmap; @@ -62,7 +61,7 @@ static struct i2c_driver wm8804_i2c_driver = { .of_match_table = of_match_ptr(wm8804_of_match), .acpi_match_table = ACPI_PTR(wm8804_acpi_match), }, - .probe = wm8804_i2c_probe, + .probe_new = wm8804_i2c_probe, .remove = wm8804_i2c_remove, .id_table = wm8804_i2c_id }; |