aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Tull <alan.tull@freescale.com>2011-10-20 10:51:55 -0500
committerEric Miao <eric.miao@linaro.org>2011-12-19 11:25:01 +0800
commit97b877f63d02698350c0e3bc30b90363e1b1dfa3 (patch)
tree3e0951ba1a2686041510ecedbabea3ad26b67292
parent4fb23d7102b2a3d71b9d23f8beaeb3c9ac4c462c (diff)
SAUCE: mxc_spdif: spdif gets clock from spdif stream
BugLink: http://bugs.launchpad.net/bugs/880632 The S/PDIF block's DPLL recovers the clock from the input bitstream. Signed-off-by: Alan Tull <alan.tull@freescale.com> Signed-off-by: Eric Miao <eric.miao@linaro.org>
-rw-r--r--sound/soc/codecs/mxc_spdif.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/sound/soc/codecs/mxc_spdif.c b/sound/soc/codecs/mxc_spdif.c
index fbcd7549420..3369e3bdcc2 100644
--- a/sound/soc/codecs/mxc_spdif.c
+++ b/sound/soc/codecs/mxc_spdif.c
@@ -1167,11 +1167,9 @@ static int __devinit mxc_spdif_probe(struct platform_device *pdev)
mxc_spdif_codec_dai.capture.channels_min = 2;
mxc_spdif_codec_dai.capture.channels_max = 2;
- if (plat_data->spdif_clk_44100 >= 0)
- mxc_spdif_codec_dai.capture.rates |= SNDRV_PCM_RATE_44100;
- if (plat_data->spdif_clk_48000 >= 0)
- mxc_spdif_codec_dai.capture.rates |= SNDRV_PCM_RATE_32000 |
- SNDRV_PCM_RATE_48000;
+ /* rx clock is recovered from audio stream, so it is not
+ dependent on tx clocks available */
+ mxc_spdif_codec_dai.capture.rates = MXC_SPDIF_RATES_CAPTURE;
mxc_spdif_codec_dai.capture.formats = MXC_SPDIF_FORMATS_CAPTURE;
}