summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/arch/ppc/lib/timer.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/arch/ppc/lib/timer.c b/src/arch/ppc/lib/timer.c
index c82df1973b..37576d71f4 100644
--- a/src/arch/ppc/lib/timer.c
+++ b/src/arch/ppc/lib/timer.c
@@ -2,29 +2,29 @@
/* This code is distributed without warranty under the GPL v2 (see COPYING) */
#include <timer.h>
-#include <bsp.h>
+#include <ppc.h>
-unsigned get_hz(void)
+unsigned long get_hz(void)
{
- return bsp_clock_speed();
+ return get_clock_speed();
}
-unsigned ticks_since_boot(void)
+unsigned long ticks_since_boot(void)
{
- extern unsigned long long _timebase(void);
- return (unsigned) (_timebase());
+ extern unsigned long _timebase(void);
+ return _timebase();
}
-void sleep_ticks(unsigned ticks)
+void sleep_ticks(unsigned long ticks)
{
- unsigned then = ticks + ticks_since_boot();
+ unsigned long then = ticks + ticks_since_boot();
while(ticks_since_boot() < then)
;
}
void udelay(int usecs)
{
- unsigned ticksperusec = get_hz() / 1000000;
+ unsigned long ticksperusec = get_hz() / 1000000;
sleep_ticks(ticksperusec * usecs);
}