ASoC: fsl: 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/87eeimolh5.wl-kuninori.morimoto.gx@renesas.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
committed by
Mark Brown
parent
4b7ead032e
commit
cb2f6927fa
@ -1038,9 +1038,9 @@ static int fsl_esai_probe(struct platform_device *pdev)
|
||||
|
||||
/* Implement full symmetry for synchronous mode */
|
||||
if (esai_priv->synchronous) {
|
||||
fsl_esai_dai.symmetric_rates = 1;
|
||||
fsl_esai_dai.symmetric_rate = 1;
|
||||
fsl_esai_dai.symmetric_channels = 1;
|
||||
fsl_esai_dai.symmetric_samplebits = 1;
|
||||
fsl_esai_dai.symmetric_sample_bits = 1;
|
||||
}
|
||||
|
||||
dev_set_drvdata(&pdev->dev, esai_priv);
|
||||
|
@ -1079,9 +1079,9 @@ static int fsl_sai_probe(struct platform_device *pdev)
|
||||
/* Sync Tx with Rx as default by following old DT binding */
|
||||
sai->synchronous[RX] = true;
|
||||
sai->synchronous[TX] = false;
|
||||
sai->cpu_dai_drv.symmetric_rates = 1;
|
||||
sai->cpu_dai_drv.symmetric_rate = 1;
|
||||
sai->cpu_dai_drv.symmetric_channels = 1;
|
||||
sai->cpu_dai_drv.symmetric_samplebits = 1;
|
||||
sai->cpu_dai_drv.symmetric_sample_bits = 1;
|
||||
|
||||
if (of_find_property(np, "fsl,sai-synchronous-rx", NULL) &&
|
||||
of_find_property(np, "fsl,sai-asynchronous", NULL)) {
|
||||
@ -1098,9 +1098,9 @@ static int fsl_sai_probe(struct platform_device *pdev)
|
||||
/* Discard all settings for asynchronous mode */
|
||||
sai->synchronous[RX] = false;
|
||||
sai->synchronous[TX] = false;
|
||||
sai->cpu_dai_drv.symmetric_rates = 0;
|
||||
sai->cpu_dai_drv.symmetric_rate = 0;
|
||||
sai->cpu_dai_drv.symmetric_channels = 0;
|
||||
sai->cpu_dai_drv.symmetric_samplebits = 0;
|
||||
sai->cpu_dai_drv.symmetric_sample_bits = 0;
|
||||
}
|
||||
|
||||
if (of_find_property(np, "fsl,sai-mclk-direction-output", NULL) &&
|
||||
|
@ -1531,9 +1531,9 @@ static int fsl_ssi_probe(struct platform_device *pdev)
|
||||
|
||||
/* Set software limitations for synchronous mode except AC97 */
|
||||
if (ssi->synchronous && !fsl_ssi_is_ac97(ssi)) {
|
||||
ssi->cpu_dai_drv.symmetric_rates = 1;
|
||||
ssi->cpu_dai_drv.symmetric_rate = 1;
|
||||
ssi->cpu_dai_drv.symmetric_channels = 1;
|
||||
ssi->cpu_dai_drv.symmetric_samplebits = 1;
|
||||
ssi->cpu_dai_drv.symmetric_sample_bits = 1;
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user