summaryrefslogtreecommitdiff
path: root/firmware/drivers/audio
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2008-12-12 21:18:47 +0000
committerBertrik Sikken <bertrik@sikken.nl>2008-12-12 21:18:47 +0000
commit7d354c5d34d1fe4526a8db6e0daf4e15643f2811 (patch)
treee99e7a756021a5069128211dc10fd3eb5ac16c22 /firmware/drivers/audio
parentf6ac3ec7edfe96acb013d2036f5ded9a8cb0d38c (diff)
FS#9625, keep HPCM codec setting (headphone common mode) enabled for E200V2 too.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19407 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers/audio')
-rw-r--r--firmware/drivers/audio/as3514.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/drivers/audio/as3514.c b/firmware/drivers/audio/as3514.c
index 551a9df9b7..ecb577cb86 100644
--- a/firmware/drivers/audio/as3514.c
+++ b/firmware/drivers/audio/as3514.c
@@ -197,9 +197,9 @@ void audiohw_postinit(void)
/* Sansa Clip and Sansa m200v4 need HPCM enabled, otherwise they output
the L-R signal on both L and R headphone outputs instead of normal stereo.
TODO : If this turns out to apply to all ams3525 targets, consider
- simplifying the precompiler condition to #if defined(AS3525).
+ simplifying the precompiler condition.
*/
-#if !defined(SANSA_CLIP) && !defined(SANSA_M200V4)
+#if !defined(SANSA_CLIP) && !defined(SANSA_M200V4) && !defined(SANSA_E200V2)
as3514_write(AS3514_AUDIOSET3, AUDIOSET3_HPCM_off);
#endif