diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2007-05-22 15:34:24 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2007-05-22 15:34:24 +0000 |
commit | e7075db2a76425051b2ecfdd14f14b07384c7e08 (patch) | |
tree | ea8d3c314b96d33451aa0c67780505076c4845e7 /firmware/drivers/audio | |
parent | 213e7d847245f9ac61a64497424faeac0e22b4a2 (diff) |
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.c | 2 |
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) as3514_write(HPH_OUT_L, 0x16); /* set default vol for headphone */ as3514_write(LINE_IN1_R, 0x36); /* unmute lineIn 1 and set gain */ as3514_write(LINE_IN1_L, 0x36); /* unmute lineIn 1 and set gain */ - as3514_write(PLLMODE, 0x04); + as3514_write(PLLMODE, 0x00); /* read all reg values */ for (i = 0; i < sizeof(as3514_regs) / sizeof(int); i++) |