diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2021-01-15 05:54:21 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-01-21 13:37:59 +0100 |
commit | bc03b3910ef6e228ef8b192e08030a1e177ad273 (patch) | |
tree | ab6388870cf514e77a9a650eef9f0bee7a7a15a6 /sound/soc/codecs/rt298.c | |
parent | ASoC: tlv*: sync parameter naming (rate/sample_bits) (diff) | |
download | linux-bc03b3910ef6e228ef8b192e08030a1e177ad273.tar.xz linux-bc03b3910ef6e228ef8b192e08030a1e177ad273.zip |
ASoC: rt*: sync parameter naming (rate/sample_bits)
This patch syncs naming rule.
- xxx_rates;
+ xxx_rate;
- xxx_samplebits;
+ xxx_sample_bits;
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Link: https://lore.kernel.org/r/87a6taolgs.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/rt298.c')
-rw-r--r-- | sound/soc/codecs/rt298.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/rt298.c b/sound/soc/codecs/rt298.c index dc0273a5a11f..32cc9b6287d2 100644 --- a/sound/soc/codecs/rt298.c +++ b/sound/soc/codecs/rt298.c @@ -1084,7 +1084,7 @@ static struct snd_soc_dai_driver rt298_dai[] = { .formats = RT298_FORMATS, }, .ops = &rt298_aif_dai_ops, - .symmetric_rates = 1, + .symmetric_rate = 1, }, { .name = "rt298-aif2", @@ -1104,7 +1104,7 @@ static struct snd_soc_dai_driver rt298_dai[] = { .formats = RT298_FORMATS, }, .ops = &rt298_aif_dai_ops, - .symmetric_rates = 1, + .symmetric_rate = 1, }, }; |