summaryrefslogtreecommitdiff
path: root/firmware/drivers/audio
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2007-05-22 15:34:24 +0000
committerMichael Sevakis <jethead71@rockbox.org>2007-05-22 15:34:24 +0000
commite7075db2a76425051b2ecfdd14f14b07384c7e08 (patch)
treeea8d3c314b96d33451aa0c67780505076c4845e7 /firmware/drivers/audio
parent213e7d847245f9ac61a64497424faeac0e22b4a2 (diff)
downloadrockbox-e7075db2a76425051b2ecfdd14f14b07384c7e08.tar.gz
rockbox-e7075db2a76425051b2ecfdd14f14b07384c7e08.zip
e200: Use 16-16 L-R pairs when writing to the TX FIFO. Kill the channel swapping and clicks. Reduce number of FIQs. Should be adaptable to iPods and other PP targets in a few minutes work, eh?
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13463 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers/audio')
-rw-r--r--firmware/drivers/audio/as3514.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/audio/as3514.c b/firmware/drivers/audio/as3514.c
index 771275e8fa..d068e08081 100644
--- a/firmware/drivers/audio/as3514.c
+++ b/firmware/drivers/audio/as3514.c
@@ -106,7 +106,7 @@ int audiohw_init(void)
106 as3514_write(HPH_OUT_L, 0x16); /* set default vol for headphone */ 106 as3514_write(HPH_OUT_L, 0x16); /* set default vol for headphone */
107 as3514_write(LINE_IN1_R, 0x36); /* unmute lineIn 1 and set gain */ 107 as3514_write(LINE_IN1_R, 0x36); /* unmute lineIn 1 and set gain */
108 as3514_write(LINE_IN1_L, 0x36); /* unmute lineIn 1 and set gain */ 108 as3514_write(LINE_IN1_L, 0x36); /* unmute lineIn 1 and set gain */
109 as3514_write(PLLMODE, 0x04); 109 as3514_write(PLLMODE, 0x00);
110 110
111 /* read all reg values */ 111 /* read all reg values */
112 for (i = 0; i < sizeof(as3514_regs) / sizeof(int); i++) 112 for (i = 0; i < sizeof(as3514_regs) / sizeof(int); i++)