summaryrefslogtreecommitdiff
path: root/firmware/target
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2010-05-15 14:16:35 +0000
committerMichael Sevakis <jethead71@rockbox.org>2010-05-15 14:16:35 +0000
commite73a175d6d73f3241e157c416c1f03cab241e0e1 (patch)
treeb72dee1e01a24a6d24a4db6715b5c7b00d8fe453 /firmware/target
parent5508d40d4bf582caaabb59ef1346b982948dcf2d (diff)
downloadrockbox-e73a175d6d73f3241e157c416c1f03cab241e0e1.tar.gz
rockbox-e73a175d6d73f3241e157c416c1f03cab241e0e1.zip
Hopefully finish off the red from r26051.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26053 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target')
-rw-r--r--firmware/target/mips/ingenic_jz47xx/codec-jz4740.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/firmware/target/mips/ingenic_jz47xx/codec-jz4740.c b/firmware/target/mips/ingenic_jz47xx/codec-jz4740.c
index ce6d889885..ab9efc91b0 100644
--- a/firmware/target/mips/ingenic_jz47xx/codec-jz4740.c
+++ b/firmware/target/mips/ingenic_jz47xx/codec-jz4740.c
@@ -21,7 +21,7 @@
21 21
22#include "config.h" 22#include "config.h"
23#include "audio.h" 23#include "audio.h"
24#include "audiohw.h" 24#include "sound.h"
25#include "jz4740.h" 25#include "jz4740.h"
26#include "system.h" 26#include "system.h"
27 27
@@ -33,8 +33,12 @@ const struct sound_settings_info audiohw_settings[] = {
33 [SOUND_VOLUME] = {"dB", 0, 1, 0, 6, 0}, 33 [SOUND_VOLUME] = {"dB", 0, 1, 0, 6, 0},
34#endif 34#endif
35 /* HAVE_SW_TONE_CONTROLS */ 35 /* HAVE_SW_TONE_CONTROLS */
36#ifdef AUDIOHW_HAVE_BASS
36 [SOUND_BASS] = {"dB", 0, 1, -24, 24, 0}, 37 [SOUND_BASS] = {"dB", 0, 1, -24, 24, 0},
38#endif
39#ifdef AUDIOHW_HAVE_TREBLE
37 [SOUND_TREBLE] = {"dB", 0, 1, -24, 24, 0}, 40 [SOUND_TREBLE] = {"dB", 0, 1, -24, 24, 0},
41#endif
38 [SOUND_BALANCE] = {"%", 0, 1,-100, 100, 0}, 42 [SOUND_BALANCE] = {"%", 0, 1,-100, 100, 0},
39 [SOUND_CHANNELS] = {"", 0, 1, 0, 5, 0}, 43 [SOUND_CHANNELS] = {"", 0, 1, 0, 5, 0},
40 [SOUND_STEREO_WIDTH] = {"%", 0, 5, 0, 250, 100}, 44 [SOUND_STEREO_WIDTH] = {"%", 0, 5, 0, 250, 100},