From 4fead08e7b4cd3af83c118f3eea1f728e4d1eac4 Mon Sep 17 00:00:00 2001 From: Thom Johansen Date: Fri, 17 Mar 2006 02:44:55 +0000 Subject: We need to allow set_cpu_frequency in the bootloader for adjustable CPU freq targets. Fixes red build. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9074 a1c6a512-1295-4272-9138-f99709370657 --- firmware/system.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/firmware/system.c b/firmware/system.c index 7d28a210bd..da58c35470 100644 --- a/firmware/system.c +++ b/firmware/system.c @@ -1199,7 +1199,8 @@ static void ipod_init_cache(void) for (i = 0x10000000; i < 0x10002000; i += 16) inb(i); } - +#endif + /* Only these two support CPU boosting at the moment */ #if defined(APPLE_IPODNANO) || defined(APPLE_IPODVIDEO) void set_cpu_frequency(long frequency) @@ -1228,7 +1229,7 @@ void set_cpu_frequency(long frequency) /* Select PLL as clock source? */ outl((inl(0x60006020) & 0x0fffff0f) | 0x20000070, 0x60006020); } -#else +#elif !defined(BOOTLOADER) void ipod_set_cpu_frequency(void) { /* Enable PLL? */ @@ -1247,8 +1248,6 @@ void ipod_set_cpu_frequency(void) } #endif -#endif /* BOOTLOADER */ - void system_init(void) { #ifndef BOOTLOADER -- cgit v1.2.3