summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2008-03-19 13:10:02 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2008-03-19 13:10:02 +0000
commit178df1cfcfa529c58ad37922d6d934e1e0328fc5 (patch)
tree75b6e3415f2426f886b2305d64a33e31c2e87266
parentbcc50a18bae9951af272bc11839de3d73553a4c8 (diff)
downloadrockbox-178df1cfcfa529c58ad37922d6d934e1e0328fc5.tar.gz
rockbox-178df1cfcfa529c58ad37922d6d934e1e0328fc5.zip
Correct DEV_TIMING for CPUFREQ_DEFAULT. Was changed by fault in former power management commit.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16716 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/target/arm/system-pp502x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/arm/system-pp502x.c b/firmware/target/arm/system-pp502x.c
index 27d11aa815..e77349d2e3 100644
--- a/firmware/target/arm/system-pp502x.c
+++ b/firmware/target/arm/system-pp502x.c
@@ -259,7 +259,7 @@ static void pp_set_cpu_frequency(long frequency)
259 while (!(PLL_STATUS & 0x80000000)); /* wait for relock */ 259 while (!(PLL_STATUS & 0x80000000)); /* wait for relock */
260#endif 260#endif
261 scale_suspend_core(true); 261 scale_suspend_core(true);
262 DEV_TIMING1 = 0x00000808; 262 DEV_TIMING1 = 0x00000303;
263 CLOCK_SOURCE = 0x20007777; /* source #1, #2, #3, #4: PLL (#2 active) */ 263 CLOCK_SOURCE = 0x20007777; /* source #1, #2, #3, #4: PLL (#2 active) */
264 scale_suspend_core(false); 264 scale_suspend_core(false);
265 break; 265 break;