summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEduard Kutuev <nap@napych.com>2015-02-14 18:10:54 +0300
committerEduard Kutuev <nap@napych.com>2015-02-14 18:10:54 +0300
commit8a078d7853c6f994b33496198d1077a38fcd5e4b (patch)
tree8d06aae518e5390cf3a7854976c1b554131f35de
parentd81b36222a9d3c261367cc4cfbe692dc06a92023 (diff)
downloadrockbox-8a078d7.tar.gz
rockbox-8a078d7.zip
iBasso DX90 sound enabling fix
Writing 0 instead of '0' to /sys/class/codec/wm8740_mute enables sound on DX90. Change-Id: Ie8e3980cac6b9298ef2c94f2faac023811d47b32
-rw-r--r--firmware/target/hosted/ibasso/system-ibasso.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/hosted/ibasso/system-ibasso.c b/firmware/target/hosted/ibasso/system-ibasso.c
index cf087761d3..45a6514aa2 100644
--- a/firmware/target/hosted/ibasso/system-ibasso.c
+++ b/firmware/target/hosted/ibasso/system-ibasso.c
@@ -63,7 +63,7 @@ void system_init(void)
Prevent device to mute, which will cause tinyalsa pcm_writes to fail.
/sys/class/codec/wm8740_mute
*/
- if(! sysfs_set_char(SYSFS_WM8740_MUTE, '0'))
+ if(! sysfs_set_char(SYSFS_WM8740_MUTE, 0))
{
DEBUGF("ERROR %s: Can not set WM8740 lock.", __func__);
}