summaryrefslogtreecommitdiff
path: root/firmware/drivers/wm8758.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/wm8758.c')
-rw-r--r--firmware/drivers/wm8758.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/firmware/drivers/wm8758.c b/firmware/drivers/wm8758.c
index 9d2a300e70..33960af9b4 100644
--- a/firmware/drivers/wm8758.c
+++ b/firmware/drivers/wm8758.c
@@ -286,14 +286,14 @@ 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 | 0x100); /* Always apply EQ to the DAC path */ 289 wm8758_write(EQ1, eq | 0x100); /* Always apply EQ to the DAC path */
290 } else if (band == 1) { 290 } else if (band == 1) {
291 wm8758_write(EQ1, eq);
292 } else if (band == 2) {
293 wm8758_write(EQ2, eq); 291 wm8758_write(EQ2, eq);
294 } else if (band == 3) { 292 } else if (band == 2) {
295 wm8758_write(EQ3, eq); 293 wm8758_write(EQ3, eq);
296 } else if (band == 4) { 294 } else if (band == 3) {
297 wm8758_write(EQ4, eq); 295 wm8758_write(EQ4, eq);
296 } else if (band == 4) {
297 wm8758_write(EQ5, eq);
298 } 298 }
299} 299}