summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Everton <dan@iocaine.org>2006-08-14 11:35:32 +0000
committerDan Everton <dan@iocaine.org>2006-08-14 11:35:32 +0000
commit979dd7ad0f9bb133787f13e03df14750adf86c73 (patch)
treec2e2d66c8fc2240c57ba7bda7ed3c7ae62dcd742
parentf1cebb7c7fa4e3d9f989ebdb027254eccbe732af (diff)
downloadrockbox-979dd7ad0f9bb133787f13e03df14750adf86c73.tar.gz
rockbox-979dd7ad0f9bb133787f13e03df14750adf86c73.zip
Make sure the EQ is always applied to the DAC path.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10570 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/drivers/wm8758.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/wm8758.c b/firmware/drivers/wm8758.c
index b7894e66b7..9d2a300e70 100644
--- a/firmware/drivers/wm8758.c
+++ b/firmware/drivers/wm8758.c
@@ -286,7 +286,7 @@ void wmcodec_set_equalizer_band(int band, int freq, int bw, int gain)
286 eq |= 12 - gain; 286 eq |= 12 - gain;
287 287
288 if (band == 0) { 288 if (band == 0) {
289 wm8758_write(EQ0, eq); 289 wm8758_write(EQ0, eq | 0x100); /* Always apply EQ to the DAC path */
290 } else if (band == 1) { 290 } else if (band == 1) {
291 wm8758_write(EQ1, eq); 291 wm8758_write(EQ1, eq);
292 } else if (band == 2) { 292 } else if (band == 2) {