diff options
author | Dan Everton <dan@iocaine.org> | 2006-08-15 09:38:13 +0000 |
---|---|---|
committer | Dan Everton <dan@iocaine.org> | 2006-08-15 09:38:13 +0000 |
commit | eb1dd38960214cb5581b9d39ef4fe73e2a050090 (patch) | |
tree | 225cdbae19e67685ba898f0559fa25a7177f91bd /firmware/drivers | |
parent | 1792170633842d274d623dcdd7265f2e55ff2fc9 (diff) |
Add support for displaying the the current path or the full path (or neither) in the file browser. Check General Settings -> File View -> Show Path for the options.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10578 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers')
-rw-r--r-- | firmware/drivers/wm8758.c | 10 |
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) eq |= 12 - gain; if (band == 0) { - wm8758_write(EQ0, eq | 0x100); /* Always apply EQ to the DAC path */ + wm8758_write(EQ1, eq | 0x100); /* Always apply EQ to the DAC path */ } else if (band == 1) { - wm8758_write(EQ1, eq); - } else if (band == 2) { wm8758_write(EQ2, eq); - } else if (band == 3) { + } else if (band == 2) { wm8758_write(EQ3, eq); - } else if (band == 4) { + } else if (band == 3) { wm8758_write(EQ4, eq); + } else if (band == 4) { + wm8758_write(EQ5, eq); } } |