diff options
author | Stephen Kitt <steve@sk2.org> | 2022-04-05 18:34:00 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2022-04-06 23:37:54 +0100 |
commit | f950ef9180351f73c319ca81e612c4cc98c07cbd (patch) | |
tree | 8200bc89bc1fac990f89e48ed981ad77eb2be5a1 /sound/soc/codecs/tscs454.c | |
parent | 97b0b6e3fb8a390205f3266b1fba3e195b9edf30 (diff) | |
download | linux-f950ef9180351f73c319ca81e612c4cc98c07cbd.tar.bz2 |
ASoC: tscs*: 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>
Link: https://lore.kernel.org/r/20220405163400.2156631-1-steve@sk2.org
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/tscs454.c')
-rw-r--r-- | sound/soc/codecs/tscs454.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sound/soc/codecs/tscs454.c b/sound/soc/codecs/tscs454.c index 7e1826d6f06f..b34a8b516484 100644 --- a/sound/soc/codecs/tscs454.c +++ b/sound/soc/codecs/tscs454.c @@ -3400,8 +3400,7 @@ static struct snd_soc_dai_driver tscs454_dais[] = { static char const * const src_names[] = { "xtal", "mclk1", "mclk2", "bclk"}; -static int tscs454_i2c_probe(struct i2c_client *i2c, - const struct i2c_device_id *id) +static int tscs454_i2c_probe(struct i2c_client *i2c) { struct tscs454 *tscs454; int src; @@ -3474,7 +3473,7 @@ static struct i2c_driver tscs454_i2c_driver = { .name = "tscs454", .of_match_table = tscs454_of_match, }, - .probe = tscs454_i2c_probe, + .probe_new = tscs454_i2c_probe, .id_table = tscs454_i2c_id, }; |