From 979dd7ad0f9bb133787f13e03df14750adf86c73 Mon Sep 17 00:00:00 2001 From: Dan Everton Date: Mon, 14 Aug 2006 11:35:32 +0000 Subject: 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 --- firmware/drivers/wm8758.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) eq |= 12 - gain; if (band == 0) { - wm8758_write(EQ0, eq); + wm8758_write(EQ0, eq | 0x100); /* Always apply EQ to the DAC path */ } else if (band == 1) { wm8758_write(EQ1, eq); } else if (band == 2) { -- cgit v1.2.3