diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2021-01-15 07:56:00 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-01-21 15:38:15 +0300 |
commit | 6058bcb4974418bdec55738383755b83e57e555e (patch) | |
tree | 425c72ba1ef7648ddd6ef862282c6b97465dd0c5 /sound/soc/codecs/ab8500-codec.c | |
parent | 65ba325625e74f44fe7c0052a85bcdfac2b012ec (diff) | |
download | linux-6058bcb4974418bdec55738383755b83e57e555e.tar.xz |
ASoC: ab8500: 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/87k0sen6tl.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/ab8500-codec.c')
-rw-r--r-- | sound/soc/codecs/ab8500-codec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/ab8500-codec.c b/sound/soc/codecs/ab8500-codec.c index 31a8c4162d20..c95f007cede1 100644 --- a/sound/soc/codecs/ab8500-codec.c +++ b/sound/soc/codecs/ab8500-codec.c @@ -2384,7 +2384,7 @@ static struct snd_soc_dai_driver ab8500_codec_dai[] = { .formats = AB8500_SUPPORTED_FMT, }, .ops = &ab8500_codec_ops, - .symmetric_rates = 1 + .symmetric_rate = 1 }, { .name = "ab8500-codec-dai.1", @@ -2397,7 +2397,7 @@ static struct snd_soc_dai_driver ab8500_codec_dai[] = { .formats = AB8500_SUPPORTED_FMT, }, .ops = &ab8500_codec_ops, - .symmetric_rates = 1 + .symmetric_rate = 1 } }; |