From 9238a5f1fcfcb5837a262080b4683362ba7d1490 Mon Sep 17 00:00:00 2001 From: bertrik Date: Fri, 12 Dec 2008 21:18:47 +0000 Subject: [PATCH] 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 --- firmware/drivers/audio/as3514.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/drivers/audio/as3514.c b/firmware/drivers/audio/as3514.c index 551a9df9b..ecb577cb8 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 -- 2.11.4.GIT