diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2021-01-15 07:53:13 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-01-21 15:37:45 +0300 |
commit | ba471f8d1655753bd1fad226a1c47ffc4568c02e (patch) | |
tree | 6f97063728f823028759c6d293e7e3d10eb555b6 /sound/soc/atmel/atmel-i2s.c | |
parent | 55d0056ba6a1bc8be2ae804cadf106ff2ae712ca (diff) | |
download | linux-ba471f8d1655753bd1fad226a1c47ffc4568c02e.tar.xz |
ASoC: atmel: 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/87turiolio.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/atmel/atmel-i2s.c')
-rw-r--r-- | sound/soc/atmel/atmel-i2s.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/atmel/atmel-i2s.c b/sound/soc/atmel/atmel-i2s.c index 232300dda548..7c6187e41f2b 100644 --- a/sound/soc/atmel/atmel-i2s.c +++ b/sound/soc/atmel/atmel-i2s.c @@ -541,7 +541,7 @@ static struct snd_soc_dai_driver atmel_i2s_dai = { .formats = ATMEL_I2S_FORMATS, }, .ops = &atmel_i2s_dai_ops, - .symmetric_rates = 1, + .symmetric_rate = 1, }; static const struct snd_soc_component_driver atmel_i2s_component = { |