summaryrefslogtreecommitdiff
path: root/firmware/drivers/audio/tsc2100.c
diff options
context:
space:
mode:
authorKarl Kurbjun <kkurbjun@gmail.com>2009-03-11 01:18:23 +0000
committerKarl Kurbjun <kkurbjun@gmail.com>2009-03-11 01:18:23 +0000
commit3c7ada594142b44bfb543f7ec693ac7250176287 (patch)
treea0a6cc746d5810c2e44643b627d5a181ad9acbdc /firmware/drivers/audio/tsc2100.c
parent2d9caa9aa3aeebed58772eb6ed4b2f4aed85abf6 (diff)
downloadrockbox-3c7ada594142b44bfb543f7ec693ac7250176287.tar.gz
rockbox-3c7ada594142b44bfb543f7ec693ac7250176287.zip
Sound working with rockbox PCM interface on the M:Robe 500. Doom and Rockboy run with sound. There are stability problems that need to be looked into causing the player to reset when music playback is attempted.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20284 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers/audio/tsc2100.c')
-rw-r--r--firmware/drivers/audio/tsc2100.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/firmware/drivers/audio/tsc2100.c b/firmware/drivers/audio/tsc2100.c
index 98a16f1fc1..8a71d57e78 100644
--- a/firmware/drivers/audio/tsc2100.c
+++ b/firmware/drivers/audio/tsc2100.c
@@ -83,7 +83,7 @@ void audiohw_init(void)
83 83
84void audiohw_postinit(void) 84void audiohw_postinit(void)
85{ 85{
86 audiohw_mute(0); 86 audiohw_mute(false);
87} 87}
88 88
89void audiohw_set_master_vol(int vol_l, int vol_r) 89void audiohw_set_master_vol(int vol_l, int vol_r)
@@ -112,7 +112,6 @@ void audiohw_close(void)
112{ 112{
113 /* mute headphones */ 113 /* mute headphones */
114 audiohw_mute(true); 114 audiohw_mute(true);
115
116} 115}
117 116
118void audiohw_set_frequency(int fsel) 117void audiohw_set_frequency(int fsel)