summaryrefslogtreecommitdiff
path: root/firmware/drivers/audio/tsc2100.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/audio/tsc2100.c')
-rw-r--r--firmware/drivers/audio/tsc2100.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/firmware/drivers/audio/tsc2100.c b/firmware/drivers/audio/tsc2100.c
index 038f3ed178..e0e2c53e69 100644
--- a/firmware/drivers/audio/tsc2100.c
+++ b/firmware/drivers/audio/tsc2100.c
@@ -90,16 +90,7 @@ void audiohw_init(void)
90 90
91void audiohw_postinit(void) 91void audiohw_postinit(void)
92{ 92{
93} 93 audiohw_mute(0);
94
95/* Silently enable / disable audio output */
96void audiohw_enable_output(bool enable)
97{
98 if (enable) {
99 audiohw_mute(0);
100 } else {
101 audiohw_mute(1);
102 }
103} 94}
104 95
105void audiohw_set_master_vol(int vol_l, int vol_r) 96void audiohw_set_master_vol(int vol_l, int vol_r)