1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Bertrik Sikken 2008-12-12 21:18:47 +00:00
parent f6ac3ec7ed
commit 7d354c5d34

View file

@ -197,9 +197,9 @@ void audiohw_postinit(void)
/* Sansa Clip and Sansa m200v4 need HPCM enabled, otherwise they output /* 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. 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 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); as3514_write(AS3514_AUDIOSET3, AUDIOSET3_HPCM_off);
#endif #endif