summaryrefslogtreecommitdiff
path: root/firmware/target/arm/imx31/gigabeat-s/wmcodec-imx31.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/imx31/gigabeat-s/wmcodec-imx31.c')
-rw-r--r--firmware/target/arm/imx31/gigabeat-s/wmcodec-imx31.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/target/arm/imx31/gigabeat-s/wmcodec-imx31.c b/firmware/target/arm/imx31/gigabeat-s/wmcodec-imx31.c
index cf9331144a..2572b88fee 100644
--- a/firmware/target/arm/imx31/gigabeat-s/wmcodec-imx31.c
+++ b/firmware/target/arm/imx31/gigabeat-s/wmcodec-imx31.c
@@ -53,10 +53,10 @@ void audiohw_init(void)
53 * INT_BIT_CLK (MCLK) / 1.5 = 11289600Hz = 256*fs = SYSCLK 53 * INT_BIT_CLK (MCLK) / 1.5 = 11289600Hz = 256*fs = SYSCLK
54 */ 54 */
55 imx31_regmod32(&CCM_PDR1, 55 imx31_regmod32(&CCM_PDR1,
56 (1-1) << CCM_PDR1_SSI1_PRE_PODF_POS | 56 ((1-1) << CCM_PDR1_SSI1_PRE_PODF_POS) |
57 (5-1) << CCM_PDR1_SSI1_PODF_POS | 57 ((5-1) << CCM_PDR1_SSI1_PODF_POS) |
58 (8-1) << CCM_PDR1_SSI2_PRE_PODF_POS, 58 ((8-1) << CCM_PDR1_SSI2_PRE_PODF_POS),
59 (64-1) << CCM_PDR1_SSI2_PODF_POS | 59 ((64-1) << CCM_PDR1_SSI2_PODF_POS) |
60 CCM_PDR1_SSI1_PODF | CCM_PDR1_SSI2_PODF | 60 CCM_PDR1_SSI1_PODF | CCM_PDR1_SSI2_PODF |
61 CCM_PDR1_SSI1_PRE_PODF | CCM_PDR1_SSI2_PRE_PODF); 61 CCM_PDR1_SSI1_PRE_PODF | CCM_PDR1_SSI2_PRE_PODF);
62 62