diff options
author | Stephen Kitt <steve@sk2.org> | 2022-03-25 18:07:34 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2022-04-05 10:23:19 +0100 |
commit | 4a4043456cb82df20e146902cfb3dd84bc393cd3 (patch) | |
tree | b8d252e7bd3cb191bde38348c6d2fc7613d83026 /sound/soc/codecs/cs43130.c | |
parent | 6d8f318b949aaa43a415947ee834890546e4e81b (diff) | |
download | linux-4a4043456cb82df20e146902cfb3dd84bc393cd3.tar.gz linux-4a4043456cb82df20e146902cfb3dd84bc393cd3.tar.bz2 linux-4a4043456cb82df20e146902cfb3dd84bc393cd3.zip |
ASoC: cs*: 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.
This avoids scanning the identifier tables during probes.
Signed-off-by: Stephen Kitt <steve@sk2.org>
Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: Lucas Tanure <tanureal@opensource.cirrus.com>
Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20220325170734.1216018-1-steve@sk2.org
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/cs43130.c')
-rw-r--r-- | sound/soc/codecs/cs43130.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sound/soc/codecs/cs43130.c b/sound/soc/codecs/cs43130.c index 44b20c1ef851..e38552a961ef 100644 --- a/sound/soc/codecs/cs43130.c +++ b/sound/soc/codecs/cs43130.c @@ -2418,8 +2418,7 @@ static int cs43130_handle_device_data(struct i2c_client *i2c_client, return 0; } -static int cs43130_i2c_probe(struct i2c_client *client, - const struct i2c_device_id *id) +static int cs43130_i2c_probe(struct i2c_client *client) { struct cs43130_private *cs43130; int ret; @@ -2702,7 +2701,7 @@ static struct i2c_driver cs43130_i2c_driver = { .pm = &cs43130_runtime_pm, }, .id_table = cs43130_i2c_id, - .probe = cs43130_i2c_probe, + .probe_new = cs43130_i2c_probe, .remove = cs43130_i2c_remove, }; |