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) {