summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--firmware/target/arm/ascodec-pp.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/firmware/target/arm/ascodec-pp.c b/firmware/target/arm/ascodec-pp.c
index ac45cddc14..b19bde7228 100644
--- a/firmware/target/arm/ascodec-pp.c
+++ b/firmware/target/arm/ascodec-pp.c
@@ -66,6 +66,7 @@ void audiohw_init(void)
void ascodec_supressor_on(bool on)
{
+ /* CHECK: Good for c200 too? */
#ifdef SANSA_E200
if (on) {
/* Set pop prevention */
@@ -74,5 +75,7 @@ void ascodec_supressor_on(bool on)
/* Release pop prevention */
GPIO_CLEAR_BITWISE(GPIOG_OUTPUT_VAL, 0x08);
}
+#else
+ (void)on;
#endif
}