aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorEero Nurkkala <ext-eero.nurkkala@nokia.com>2009-08-20 09:18:23 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2009-08-20 15:10:28 -0400
commitc721bbdad71d2928e8b5015e9b462fbeb35427c6 (patch)
treec6dd2115c0362207d638912891d185512a490bc8 /sound
parenta152ff24b9784ddfd347953f23c53f0b890ebca8 (diff)
ASoC: Add runtime check for RFIG and XFIG
This is, no RFIG or XFIG (Not defined in 34xx), correct initiliazation of rccr and xccr. Signed-off-by: Eero Nurkkala <ext-eero.nurkkala@nokia.com> Acked-by: Jarkko Nikula <jhnikula@gmail.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/omap/omap-mcbsp.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/sound/soc/omap/omap-mcbsp.c b/sound/soc/omap/omap-mcbsp.c
index 6a837ffd5d0..a7b09614734 100644
--- a/sound/soc/omap/omap-mcbsp.c
+++ b/sound/soc/omap/omap-mcbsp.c
@@ -321,8 +321,11 @@ static int omap_mcbsp_dai_set_dai_fmt(struct snd_soc_dai *cpu_dai,
321 /* Generic McBSP register settings */ 321 /* Generic McBSP register settings */
322 regs->spcr2 |= XINTM(3) | FREE; 322 regs->spcr2 |= XINTM(3) | FREE;
323 regs->spcr1 |= RINTM(3); 323 regs->spcr1 |= RINTM(3);
324 regs->rcr2 |= RFIG; 324 /* RFIG and XFIG are not defined in 34xx */
325 regs->xcr2 |= XFIG; 325 if (!cpu_is_omap34xx()) {
326 regs->rcr2 |= RFIG;
327 regs->xcr2 |= XFIG;
328 }
326 if (cpu_is_omap2430() || cpu_is_omap34xx()) { 329 if (cpu_is_omap2430() || cpu_is_omap34xx()) {
327 regs->xccr = DXENDLY(1) | XDMAEN; 330 regs->xccr = DXENDLY(1) | XDMAEN;
328 regs->rccr = RFULL_CYCLE | RDMAEN; 331 regs->rccr = RFULL_CYCLE | RDMAEN;