summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/system.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/system.c b/firmware/system.c
index da58c35470..ae60148416 100644
--- a/firmware/system.c
+++ b/firmware/system.c
@@ -1201,8 +1201,8 @@ static void ipod_init_cache(void)
1201} 1201}
1202#endif 1202#endif
1203 1203
1204/* Only these two support CPU boosting at the moment */ 1204/* Not all iPod targets support CPU freq. boosting yet */
1205#if defined(APPLE_IPODNANO) || defined(APPLE_IPODVIDEO) 1205#ifdef HAVE_ADJUSTABLE_CPU_FREQ
1206void set_cpu_frequency(long frequency) 1206void set_cpu_frequency(long frequency)
1207{ 1207{
1208 unsigned long postmult; 1208 unsigned long postmult;
@@ -1263,7 +1263,7 @@ void system_init(void)
1263 outl(-1, 0x60001038); 1263 outl(-1, 0x60001038);
1264 outl(-1, 0x60001028); 1264 outl(-1, 0x60001028);
1265 outl(-1, 0x6000101c); 1265 outl(-1, 0x6000101c);
1266#if !defined(APPLE_IPODNANO) && !defined(APPLE_IPODVIDEO) 1266#ifndef HAVE_ADJUSTABLE_CPU_FREQ
1267 ipod_set_cpu_frequency(); 1267 ipod_set_cpu_frequency();
1268#endif 1268#endif
1269 ipod_init_cache(); 1269 ipod_init_cache();