summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2006-03-17 02:44:55 +0000
committerThom Johansen <thomj@rockbox.org>2006-03-17 02:44:55 +0000
commit4fead08e7b4cd3af83c118f3eea1f728e4d1eac4 (patch)
tree995043af8c7717d03144effbb57db068492b2b82
parent176b38f54879373ee3ccb0a021f0820a33845a61 (diff)
downloadrockbox-4fead08e7b4cd3af83c118f3eea1f728e4d1eac4.zip
rockbox-4fead08e7b4cd3af83c118f3eea1f728e4d1eac4.tar.gz
rockbox-4fead08e7b4cd3af83c118f3eea1f728e4d1eac4.tar.bz2
rockbox-4fead08e7b4cd3af83c118f3eea1f728e4d1eac4.tar.xz
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
-rw-r--r--firmware/system.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/firmware/system.c b/firmware/system.c
index 7d28a21..da58c35 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