summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--firmware/target/arm/imx233/system-imx233.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/arm/imx233/system-imx233.c b/firmware/target/arm/imx233/system-imx233.c
index 3ac5d0e557..a8a6a748ce 100644
--- a/firmware/target/arm/imx233/system-imx233.c
+++ b/firmware/target/arm/imx233/system-imx233.c
@@ -357,8 +357,8 @@ void imx233_set_cpu_frequency(long frequency)
/* Change VDDD regulator */
imx233_power_set_regulator(REGULATOR_VDDD, prof->vddd, prof->vddd_bo);
}
- /* enable auto slow again */
- imx233_clkctrl_enable_auto_slow(true);
+ /* enable auto slow again only at lower cpu frequencies */
+ imx233_clkctrl_enable_auto_slow(frequency != CPUFREQ_MAX);
/* update frequency */
cpu_frequency = frequency;
#else