diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2007-05-22 16:56:26 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2007-05-22 16:56:26 +0000 |
commit | d9bbf5af8ec9d64f493689c6e071bea37b47110c (patch) | |
tree | 24357919563ad44bbb9ef55c5988aeeefe55287c /firmware | |
parent | 644d315ec0db81620d19856c392c3124936c48a4 (diff) |
e200: Remute the line in with #if 0 as it causes static noise for those without a radio chip. The FM radio patch should be updated to have those lines to compile.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13467 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/drivers/audio/as3514.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/drivers/audio/as3514.c b/firmware/drivers/audio/as3514.c index 98e3e439a0..599327c43f 100644 --- a/firmware/drivers/audio/as3514.c +++ b/firmware/drivers/audio/as3514.c @@ -114,8 +114,10 @@ int audiohw_init(void) as3514_write(AUDIOSET3, 0x5); /* Set HPCM off, ZCU off*/ as3514_write(HPH_OUT_R, 0xc0 | 0x16); /* set vol and set speaker over-current to 0 */ as3514_write(HPH_OUT_L, 0x16); /* set default vol for headphone */ +#if 0 as3514_write(LINE_IN1_R, 0x36); /* unmute lineIn 1 and set gain */ as3514_write(LINE_IN1_L, 0x36); /* unmute lineIn 1 and set gain */ +#endif as3514_write(PLLMODE, 0x00); /* read all reg values */ |