All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
To: Mark Brown <broonie@kernel.org>
Cc: Linux-ALSA <alsa-devel@alsa-project.org>
Subject: [PATCH 14/44] ASoC: mediatek: sync parameter naming (rate/sample_bits)
Date: 15 Jan 2021 13:54:03 +0900	[thread overview]
Message-ID: <87ft32olha.wl-kuninori.morimoto.gx@renesas.com> (raw)
In-Reply-To: <87zh1aolkt.wl-kuninori.morimoto.gx@renesas.com>

From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

This patch syncs naming rule.

 - xxx_rates;
 + xxx_rate;

 - xxx_samplebits;
 + xxx_sample_bits;

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
 sound/soc/mediatek/mt2701/mt2701-afe-pcm.c | 10 +++++-----
 sound/soc/mediatek/mt6797/mt6797-dai-pcm.c |  8 ++++----
 sound/soc/mediatek/mt8173/mt8173-afe-pcm.c |  2 +-
 sound/soc/mediatek/mt8183/mt8183-dai-pcm.c |  8 ++++----
 sound/soc/mediatek/mt8192/mt8192-dai-pcm.c |  8 ++++----
 5 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/sound/soc/mediatek/mt2701/mt2701-afe-pcm.c b/sound/soc/mediatek/mt2701/mt2701-afe-pcm.c
index df29641c74aa..d5cffe7a7e15 100644
--- a/sound/soc/mediatek/mt2701/mt2701-afe-pcm.c
+++ b/sound/soc/mediatek/mt2701/mt2701-afe-pcm.c
@@ -655,7 +655,7 @@ static struct snd_soc_dai_driver mt2701_afe_pcm_dais[] = {
 
 		},
 		.ops = &mt2701_afe_i2s_ops,
-		.symmetric_rates = 1,
+		.symmetric_rate = 1,
 	},
 	{
 		.name = "I2S1",
@@ -679,7 +679,7 @@ static struct snd_soc_dai_driver mt2701_afe_pcm_dais[] = {
 				| SNDRV_PCM_FMTBIT_S32_LE)
 			},
 		.ops = &mt2701_afe_i2s_ops,
-		.symmetric_rates = 1,
+		.symmetric_rate = 1,
 	},
 	{
 		.name = "I2S2",
@@ -703,7 +703,7 @@ static struct snd_soc_dai_driver mt2701_afe_pcm_dais[] = {
 				| SNDRV_PCM_FMTBIT_S32_LE)
 			},
 		.ops = &mt2701_afe_i2s_ops,
-		.symmetric_rates = 1,
+		.symmetric_rate = 1,
 	},
 	{
 		.name = "I2S3",
@@ -727,7 +727,7 @@ static struct snd_soc_dai_driver mt2701_afe_pcm_dais[] = {
 				| SNDRV_PCM_FMTBIT_S32_LE)
 			},
 		.ops = &mt2701_afe_i2s_ops,
-		.symmetric_rates = 1,
+		.symmetric_rate = 1,
 	},
 	{
 		.name = "MRG BT",
@@ -749,7 +749,7 @@ static struct snd_soc_dai_driver mt2701_afe_pcm_dais[] = {
 			.formats = SNDRV_PCM_FMTBIT_S16_LE,
 		},
 		.ops = &mt2701_btmrg_ops,
-		.symmetric_rates = 1,
+		.symmetric_rate = 1,
 	}
 };
 
diff --git a/sound/soc/mediatek/mt6797/mt6797-dai-pcm.c b/sound/soc/mediatek/mt6797/mt6797-dai-pcm.c
index 3136f0bc7827..51f736f319e4 100644
--- a/sound/soc/mediatek/mt6797/mt6797-dai-pcm.c
+++ b/sound/soc/mediatek/mt6797/mt6797-dai-pcm.c
@@ -270,8 +270,8 @@ static struct snd_soc_dai_driver mtk_dai_pcm_driver[] = {
 			.formats = MTK_PCM_FORMATS,
 		},
 		.ops = &mtk_dai_pcm_ops,
-		.symmetric_rates = 1,
-		.symmetric_samplebits = 1,
+		.symmetric_rate = 1,
+		.symmetric_sample_bits = 1,
 	},
 	{
 		.name = "PCM 2",
@@ -291,8 +291,8 @@ static struct snd_soc_dai_driver mtk_dai_pcm_driver[] = {
 			.formats = MTK_PCM_FORMATS,
 		},
 		.ops = &mtk_dai_pcm_ops,
-		.symmetric_rates = 1,
-		.symmetric_samplebits = 1,
+		.symmetric_rate = 1,
+		.symmetric_sample_bits = 1,
 	},
 };
 
diff --git a/sound/soc/mediatek/mt8173/mt8173-afe-pcm.c b/sound/soc/mediatek/mt8173/mt8173-afe-pcm.c
index 7e7bda70d12e..685f4074b4e0 100644
--- a/sound/soc/mediatek/mt8173/mt8173-afe-pcm.c
+++ b/sound/soc/mediatek/mt8173/mt8173-afe-pcm.c
@@ -571,7 +571,7 @@ static struct snd_soc_dai_driver mt8173_afe_pcm_dais[] = {
 			.formats = SNDRV_PCM_FMTBIT_S16_LE,
 		},
 		.ops = &mt8173_afe_i2s_ops,
-		.symmetric_rates = 1,
+		.symmetric_rate = 1,
 	},
 };
 
diff --git a/sound/soc/mediatek/mt8183/mt8183-dai-pcm.c b/sound/soc/mediatek/mt8183/mt8183-dai-pcm.c
index bc3ba3228f08..38ce0e36cdb4 100644
--- a/sound/soc/mediatek/mt8183/mt8183-dai-pcm.c
+++ b/sound/soc/mediatek/mt8183/mt8183-dai-pcm.c
@@ -270,8 +270,8 @@ static struct snd_soc_dai_driver mtk_dai_pcm_driver[] = {
 			.formats = MTK_PCM_FORMATS,
 		},
 		.ops = &mtk_dai_pcm_ops,
-		.symmetric_rates = 1,
-		.symmetric_samplebits = 1,
+		.symmetric_rate = 1,
+		.symmetric_sample_bits = 1,
 	},
 	{
 		.name = "PCM 2",
@@ -291,8 +291,8 @@ static struct snd_soc_dai_driver mtk_dai_pcm_driver[] = {
 			.formats = MTK_PCM_FORMATS,
 		},
 		.ops = &mtk_dai_pcm_ops,
-		.symmetric_rates = 1,
-		.symmetric_samplebits = 1,
+		.symmetric_rate = 1,
+		.symmetric_sample_bits = 1,
 	},
 };
 
diff --git a/sound/soc/mediatek/mt8192/mt8192-dai-pcm.c b/sound/soc/mediatek/mt8192/mt8192-dai-pcm.c
index 6e94cfdf06fc..239e3f5b53d3 100644
--- a/sound/soc/mediatek/mt8192/mt8192-dai-pcm.c
+++ b/sound/soc/mediatek/mt8192/mt8192-dai-pcm.c
@@ -360,8 +360,8 @@ static struct snd_soc_dai_driver mtk_dai_pcm_driver[] = {
 			.formats = MTK_PCM_FORMATS,
 		},
 		.ops = &mtk_dai_pcm_ops,
-		.symmetric_rates = 1,
-		.symmetric_samplebits = 1,
+		.symmetric_rate = 1,
+		.symmetric_sample_bits = 1,
 	},
 	{
 		.name = "PCM 2",
@@ -381,8 +381,8 @@ static struct snd_soc_dai_driver mtk_dai_pcm_driver[] = {
 			.formats = MTK_PCM_FORMATS,
 		},
 		.ops = &mtk_dai_pcm_ops,
-		.symmetric_rates = 1,
-		.symmetric_samplebits = 1,
+		.symmetric_rate = 1,
+		.symmetric_sample_bits = 1,
 	},
 };
 
-- 
2.25.1


  parent reply	other threads:[~2021-01-15  4:58 UTC|newest]

Thread overview: 46+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-15  4:51 [PATCH 00/44] ASoC: sync parameter naming : rate / sample_bits Kuninori Morimoto
2021-01-15  4:52 ` [PATCH 01/44] ASoC: soc-pcm: revert soc_pcm_apply_symmetry() Kuninori Morimoto
2021-01-15  4:52 ` [PATCH 02/44] ASoC: sync parameter naming : rate / sample_bits Kuninori Morimoto
2021-01-15  4:53 ` [PATCH 03/44] ASoC: adi: sync parameter naming (rate/sample_bits) Kuninori Morimoto
2021-01-15  4:53 ` [PATCH 04/44] ASoC: atmel: " Kuninori Morimoto
2021-01-15  4:53 ` [PATCH 05/44] ASoC: au1x: " Kuninori Morimoto
2021-01-15  4:53 ` [PATCH 06/44] ASoC: bcm: " Kuninori Morimoto
2021-01-15  4:53 ` [PATCH 07/44] ASoC: cirrus: " Kuninori Morimoto
2021-01-15  4:53 ` [PATCH 08/44] ASoC: tegra: " Kuninori Morimoto
2021-01-15  4:53 ` [PATCH 09/44] ASoC: rockchip: " Kuninori Morimoto
2021-01-15  4:53 ` [PATCH 10/44] ASoC: samsung: " Kuninori Morimoto
2021-01-15  4:53 ` [PATCH 11/44] ASoC: sh: " Kuninori Morimoto
2021-01-15  4:53 ` [PATCH 12/44] ASoC: ti: " Kuninori Morimoto
2021-01-15  4:53 ` [PATCH 13/44] ASoC: pxa: " Kuninori Morimoto
2021-01-15  4:54 ` Kuninori Morimoto [this message]
2021-01-15  4:54 ` [PATCH 15/44] ASoC: fsl: " Kuninori Morimoto
2021-01-15  4:54 ` [PATCH 16/44] ASoC: wm*: " Kuninori Morimoto
2021-01-15  4:54 ` [PATCH 17/44] ASoC: tlv*: " Kuninori Morimoto
2021-01-15  4:54 ` [PATCH 18/44] ASoC: rt*: " Kuninori Morimoto
2021-01-15  4:54 ` [PATCH 19/44] ASoC: nau*: " Kuninori Morimoto
2021-01-15  4:54 ` [PATCH 20/44] ASoC: tas*: " Kuninori Morimoto
2021-01-15  4:54 ` [PATCH 21/44] ASoC: da*: " Kuninori Morimoto
2021-01-15  4:54 ` [PATCH 22/44] ASoC: es*: " Kuninori Morimoto
2021-01-15  4:54 ` [PATCH 23/44] ASoC: max*: " Kuninori Morimoto
2021-01-15  4:54 ` [PATCH 24/44] ASoC: cs*: " Kuninori Morimoto
2021-01-15  4:54 ` [PATCH 25/44] ASoC: tscs*: " Kuninori Morimoto
2021-01-15  4:54 ` [PATCH 26/44] ASoC: ak*: " Kuninori Morimoto
2021-01-15  4:55 ` [PATCH 27/44] ASoC: adau*: " Kuninori Morimoto
2021-01-15  4:55 ` [PATCH 28/44] ASoC: jz4740: " Kuninori Morimoto
2021-01-15  4:55 ` [PATCH 29/44] ASoC: sunxi: " Kuninori Morimoto
2021-01-15  4:55 ` [PATCH 30/44] ASoC: zl38060: " Kuninori Morimoto
2021-01-15  4:55 ` [PATCH 31/44] ASoC: ssm2602: " Kuninori Morimoto
2021-01-15  4:55 ` [PATCH 32/44] ASoC: sgtl5000: " Kuninori Morimoto
2021-01-15  4:55 ` [PATCH 33/44] ASoC: mc13783: " Kuninori Morimoto
2021-01-15  4:55 ` [PATCH 34/44] ASoC: mt6660: " Kuninori Morimoto
2021-01-15  4:55 ` [PATCH 35/44] ASoC: lochnagar-sc: " Kuninori Morimoto
2021-01-15  4:56 ` [PATCH 36/44] ASoC: ab8500: " Kuninori Morimoto
2021-01-15  4:56 ` [PATCH 37/44] ASoC: alc5632: " Kuninori Morimoto
2021-01-15  4:56 ` [PATCH 38/44] ASoC: cx2072x: " Kuninori Morimoto
2021-01-15  4:56 ` [PATCH 39/44] ASoC: inno_rk3036: " Kuninori Morimoto
2021-01-15  4:56 ` [PATCH 40/44] ASoC: lm49453: " Kuninori Morimoto
2021-01-15  4:56 ` [PATCH 41/44] ASoC: ml26124: " Kuninori Morimoto
2021-01-15  4:56 ` [PATCH 42/44] ASoC: soc-dai.h: remove symmetric_rates/samplebits Kuninori Morimoto
2021-01-15  4:56 ` [PATCH 43/44] ASoC: soc-pcm: cleanup soc_pcm_apply_symmetry() Kuninori Morimoto
2021-01-15  4:56 ` [PATCH 44/44] ASoC: soc-pcm: cleanup soc_pcm_params_symmetry() Kuninori Morimoto
2021-01-21 19:39 ` [PATCH 00/44] ASoC: sync parameter naming : rate / sample_bits Mark Brown

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87ft32olha.wl-kuninori.morimoto.gx@renesas.com \
    --to=kuninori.morimoto.gx@renesas.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.