summaryrefslogtreecommitdiffstats
path: root/firmware/target/arm/as3525/system-as3525.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/as3525/system-as3525.c')
-rw-r--r--firmware/target/arm/as3525/system-as3525.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/firmware/target/arm/as3525/system-as3525.c b/firmware/target/arm/as3525/system-as3525.c
index a7fa78a0d6..af11d7d842 100644
--- a/firmware/target/arm/as3525/system-as3525.c
+++ b/firmware/target/arm/as3525/system-as3525.c
@@ -484,7 +484,10 @@ void set_cpu_frequency(long frequency)
#if defined(SANSA_CLIPZIP)
ascodec_write_pmu(0x17, 1, 0x80 | 19);
#elif defined(SANSA_CLIPPLUS)
- ascodec_write_pmu(0x17, 1, 0x80 | 26);
+ if (amsv2_variant)
+ ascodec_write_pmu(0x17, 1, 0x80 | 22);
+ else
+ ascodec_write_pmu(0x17, 1, 0x80 | 26);
#else
ascodec_write_pmu(0x17, 1, 0x80 | 22);
#endif