Unverified Commit 260b668c authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown
Browse files

ASoC: cs*: sync parameter naming (rate/sample_bits)



This patch syncs naming rule.

 - xxx_rates;
 + xxx_rate;

 - xxx_samplebits;
 + xxx_sample_bits;

Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Link: https://lore.kernel.org/r/871remolg1.wl-kuninori.morimoto.gx@renesas.com


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent cb40d1b4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -194,7 +194,7 @@ static struct snd_soc_dai_driver cs35l32_dai[] = {
			.formats = CS35L32_FORMATS,
		},
		.ops = &cs35l32_ops,
		.symmetric_rates = 1,
		.symmetric_rate = 1,
	}
};

+1 −1
Original line number Diff line number Diff line
@@ -691,7 +691,7 @@ static struct snd_soc_dai_driver cs35l33_dai = {
			.formats = CS35L33_FORMATS,
		},
		.ops = &cs35l33_ops,
		.symmetric_rates = 1,
		.symmetric_rate = 1,
};

static int cs35l33_set_hg_data(struct snd_soc_component *component,
+1 −1
Original line number Diff line number Diff line
@@ -666,7 +666,7 @@ static struct snd_soc_dai_driver cs35l34_dai = {
			.formats = CS35L34_FORMATS,
		},
		.ops = &cs35l34_ops,
		.symmetric_rates = 1,
		.symmetric_rate = 1,
};

static int cs35l34_boost_inductor(struct cs35l34_private *cs35l34,
+1 −1
Original line number Diff line number Diff line
@@ -692,7 +692,7 @@ static struct snd_soc_dai_driver cs35l35_dai[] = {
			.formats = CS35L35_FORMATS,
		},
		.ops = &cs35l35_ops,
		.symmetric_rates = 1,
		.symmetric_rate = 1,
	},
	{
		.name = "cs35l35-pdm",
+1 −1
Original line number Diff line number Diff line
@@ -995,7 +995,7 @@ static struct snd_soc_dai_driver cs35l36_dai[] = {
			.formats = CS35L36_TX_FORMATS,
		},
		.ops = &cs35l36_ops,
		.symmetric_rates = 1,
		.symmetric_rate = 1,
	},
};

Loading