mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 20:55:17 -05:00
iBasso DX90 sound enabling fix
Writing 0 instead of '0' to /sys/class/codec/wm8740_mute enables sound on DX90. Change-Id: Ie8e3980cac6b9298ef2c94f2faac023811d47b32
This commit is contained in:
parent
d81b36222a
commit
8a078d7853
1 changed files with 1 additions and 1 deletions
|
|
@ -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__);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue