diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2021-01-15 05:53:43 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-01-21 13:37:51 +0100 |
commit | d11ff0bf6ac1a85fcf51f4ca52934b0fb6ac47a6 (patch) | |
tree | deef1a25514e590018086b3fac3f45a378ebf602 /sound/soc/samsung/pcm.c | |
parent | ASoC: rockchip: sync parameter naming (rate/sample_bits) (diff) | |
download | linux-d11ff0bf6ac1a85fcf51f4ca52934b0fb6ac47a6.tar.xz linux-d11ff0bf6ac1a85fcf51f4ca52934b0fb6ac47a6.zip |
ASoC: samsung: 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/87lfcuolhu.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/samsung/pcm.c')
-rw-r--r-- | sound/soc/samsung/pcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/samsung/pcm.c b/sound/soc/samsung/pcm.c index 6f50c7b47326..bfd76e9cc0ca 100644 --- a/sound/soc/samsung/pcm.c +++ b/sound/soc/samsung/pcm.c @@ -452,7 +452,7 @@ static int s3c_pcm_dai_probe(struct snd_soc_dai *dai) #define S3C_PCM_RATES SNDRV_PCM_RATE_8000_96000 #define S3C_PCM_DAI_DECLARE \ - .symmetric_rates = 1, \ + .symmetric_rate = 1, \ .probe = s3c_pcm_dai_probe, \ .ops = &s3c_pcm_dai_ops, \ .playback = { \ |