summaryrefslogtreecommitdiff
path: root/firmware/drivers/audio/as3514.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/audio/as3514.c')
-rw-r--r--firmware/drivers/audio/as3514.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/drivers/audio/as3514.c b/firmware/drivers/audio/as3514.c
index bc6705caf2..5d7c700ac1 100644
--- a/firmware/drivers/audio/as3514.c
+++ b/firmware/drivers/audio/as3514.c
@@ -141,15 +141,15 @@ void audiohw_init(void)
141 DEV_INIT2 &= ~0x300; 141 DEV_INIT2 &= ~0x300;
142 142
143 /*mini2?*/ 143 /*mini2?*/
144 outl(inl(0x70000010) & ~0x3000000, 0x70000010); 144 DEV_INIT1 &=~0x3000000;
145 /*mini2?*/ 145 /*mini2?*/
146 146
147 /* device reset */ 147 /* device reset */
148 DEV_RS |= 0x800; 148 DEV_RS |= DEV_I2S;
149 DEV_RS &=~0x800; 149 DEV_RS &=~DEV_I2S;
150 150
151 /* device enable */ 151 /* device enable */
152 DEV_EN |= 0x807; 152 DEV_EN |= (DEV_I2S | 0x7);
153 153
154 /* enable external dev clock clocks */ 154 /* enable external dev clock clocks */
155 DEV_EN |= 0x2; 155 DEV_EN |= 0x2;