summaryrefslogtreecommitdiff
path: root/firmware/drivers/audio/xduoolinux_codec.c
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-10-20 17:03:21 -0400
committerSolomon Peachy <pizza@shaftnet.org>2020-10-20 17:07:48 -0400
commit6834d1a02f1099c7dcd1428613a12f6eef0c6821 (patch)
treec45727cccdc192dd361e13c7476114390529eebf /firmware/drivers/audio/xduoolinux_codec.c
parentdfae5d881d81164232bfd488f2518bce714efef5 (diff)
downloadrockbox-6834d1a02f1099c7dcd1428613a12f6eef0c6821.tar.gz
rockbox-6834d1a02f1099c7dcd1428613a12f6eef0c6821.zip
xduoox20: Start unmuted, as the least-worst option
Change-Id: Ie85d9df0f861315dfc9d767218d86115420aa9d7
Diffstat (limited to 'firmware/drivers/audio/xduoolinux_codec.c')
-rw-r--r--firmware/drivers/audio/xduoolinux_codec.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/firmware/drivers/audio/xduoolinux_codec.c b/firmware/drivers/audio/xduoolinux_codec.c
index 31224abd96..5b83f0fa8c 100644
--- a/firmware/drivers/audio/xduoolinux_codec.c
+++ b/firmware/drivers/audio/xduoolinux_codec.c
@@ -126,7 +126,13 @@ void audiohw_preinit(void)
126 logf("hw preinit"); 126 logf("hw preinit");
127 alsa_controls_init(); 127 alsa_controls_init();
128 hw_open(); 128 hw_open();
129
130#if defined(XDUOO_X3II)
129 audiohw_mute(true); /* Start muted to avoid the POP */ 131 audiohw_mute(true); /* Start muted to avoid the POP */
132#else
133 audiohw_mute(false); /* No need */
134#endif
135
130// const char * const codec_pmdown = "/sys/devices/platform/ingenic-x3ii.0/x3ii-ak4490-i2s/pmdown_time"; // in ms, defaults 5000 136// const char * const codec_pmdown = "/sys/devices/platform/ingenic-x3ii.0/x3ii-ak4490-i2s/pmdown_time"; // in ms, defaults 5000
131} 137}
132 138