summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2006-03-17 02:13:49 +0000
committerThom Johansen <thomj@rockbox.org>2006-03-17 02:13:49 +0000
commit176b38f54879373ee3ccb0a021f0820a33845a61 (patch)
treee32889ac2df3c43db7f81514a7ff9030aebad0a2
parent70ab7fc4e90141064c127e1207ee2f8d501f6356 (diff)
downloadrockbox-176b38f54879373ee3ccb0a021f0820a33845a61.tar.gz
rockbox-176b38f54879373ee3ccb0a021f0820a33845a61.zip
Remove tabs...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9073 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/system.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/firmware/system.c b/firmware/system.c
index b432cde79a..7d28a210bd 100644
--- a/firmware/system.c
+++ b/firmware/system.c
@@ -1215,7 +1215,7 @@ void set_cpu_frequency(long frequency)
cpu_frequency = frequency;
/* Enable PLL? */
- outl(inl(0x70000020) | (1<<30), 0x70000020);
+ outl(inl(0x70000020) | (1<<30), 0x70000020);
/* Select 24MHz crystal as clock source? */
outl((inl(0x60006020) & 0x0fffff0f) | 0x20000020, 0x60006020);
@@ -1223,16 +1223,16 @@ void set_cpu_frequency(long frequency)
/* Clock frequency = (24/8)*postmult */
outl(0xaa020000 | 8 | (postmult << 8), 0x60006034);
/* Wait for PLL relock? */
- udelay(2000);
+ udelay(2000);
/* Select PLL as clock source? */
- outl((inl(0x60006020) & 0x0fffff0f) | 0x20000070, 0x60006020);
+ outl((inl(0x60006020) & 0x0fffff0f) | 0x20000070, 0x60006020);
}
#else
void ipod_set_cpu_frequency(void)
{
/* Enable PLL? */
- outl(inl(0x70000020) | (1<<30), 0x70000020);
+ outl(inl(0x70000020) | (1<<30), 0x70000020);
/* Select 24MHz crystal as clock source? */
outl((inl(0x60006020) & 0x0fffff0f) | 0x20000020, 0x60006020);
@@ -1240,10 +1240,10 @@ void ipod_set_cpu_frequency(void)
/* Clock frequency = (24/8)*25 = 75MHz */
outl(0xaa020000 | 8 | (25 << 8), 0x60006034);
/* Wait for PLL relock? */
- udelay(2000);
+ udelay(2000);
/* Select PLL as clock source? */
- outl((inl(0x60006020) & 0x0fffff0f) | 0x20000070, 0x60006020);
+ outl((inl(0x60006020) & 0x0fffff0f) | 0x20000070, 0x60006020);
}
#endif
@@ -1267,7 +1267,7 @@ void system_init(void)
#if !defined(APPLE_IPODNANO) && !defined(APPLE_IPODVIDEO)
ipod_set_cpu_frequency();
#endif
- ipod_init_cache();
+ ipod_init_cache();
#endif
}