Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

imx233: correctly restore auto slow on cpu frequency change

Change-Id: I3ba495488e20fdd19d391f84ff484c1ce305d11b

+2 -1
+2 -1
firmware/target/arm/imx233/system-imx233.c
··· 171 171 172 172 cpu_frequency = frequency; 173 173 /* disable auto-slow (enable back afterwards) */ 174 + bool as = imx233_clkctrl_is_auto_slow_enabled(); 174 175 imx233_clkctrl_enable_auto_slow(false); 175 176 /* go back to a known state in safe way: 176 177 * clk_p@24 MHz ··· 221 222 } 222 223 223 224 /* enable auto slow again */ 224 - imx233_clkctrl_enable_auto_slow(true); 225 + imx233_clkctrl_enable_auto_slow(as); 225 226 } 226 227 #endif 227 228