summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers')
-rw-r--r--firmware/drivers/wm8731l.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/wm8731l.c b/firmware/drivers/wm8731l.c
index f73de68b97..71ccfdb4f6 100644
--- a/firmware/drivers/wm8731l.c
+++ b/firmware/drivers/wm8731l.c
@@ -227,7 +227,7 @@ void wmcodec_enable_output(bool enable)
227 } else { 227 } else {
228#if defined(IRIVER_H10) || defined(IRIVER_H10_5GB) 228#if defined(IRIVER_H10) || defined(IRIVER_H10_5GB)
229 /* We need to disable bit 4 of GPIOL to disable sound on H10 */ 229 /* We need to disable bit 4 of GPIOL to disable sound on H10 */
230 GPIOL_OUTPUT_VAL ^= 0x10; 230 GPIOL_OUTPUT_VAL &= ~0x10;
231#endif 231#endif
232 wmcodec_mute(1); 232 wmcodec_mute(1);
233 } 233 }