summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorWilliam Lai <b04597@freescale.com>2010-09-19 16:12:13 +0800
committerAlan Tull <r80115@freescale.com>2010-09-25 09:53:11 -0500
commit4eeabc7836c578c00b3c8e66ae16c7e100e1339d (patch)
treeff3768ea41276715d3e1641b7bb905fa5bfbf2ee /sound
parentf7cac6a6000c0ee0b5f6531afc73bf5ab53b9943 (diff)
ENGR00131711-3 ESAI: Output the extal clock directly
Output the extal clock directly for the HCKT, without any divider. This clock's sample rate is same as ckih on the board. Signed-off-by: William Lai <b04597@freescale.com>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/imx/imx-esai.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/imx/imx-esai.c b/sound/soc/imx/imx-esai.c
index cd9131e00997..2154599def5d 100644
--- a/sound/soc/imx/imx-esai.c
+++ b/sound/soc/imx/imx-esai.c
@@ -70,9 +70,9 @@ static int imx_esai_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
ecr &= ~(ESAI_ECR_ERI | ESAI_ECR_ERO);
} else if (clk_id == ESAI_CLK_EXTAL) {
ecr |= ESAI_ECR_ETI;
- ecr &= ~ESAI_ECR_ETO;
+ ecr |= ESAI_ECR_ETO;
ecr |= ESAI_ECR_ERI;
- ecr &= ~ESAI_ECR_ERO;
+ ecr |= ESAI_ECR_ERO;
}
}