summaryrefslogtreecommitdiffstats
path: root/arch/ppc
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-07-05 18:01:31 +0200
committerSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-07-05 18:01:31 +0200
commit144592aacd88c0752cbdcefa889db50a14c2450a (patch)
tree629411ef30e314db389889c90a804edf0805dfc2 /arch/ppc
parent0c2b8f687e51d1c199856bcd8e603297dd5d7986 (diff)
downloadbarebox-144592aacd88c0752cbdcefa889db50a14c2450a.tar.gz
barebox-144592aacd88c0752cbdcefa889db50a14c2450a.tar.xz
svn_rev_195
remove unneeded timer functions
Diffstat (limited to 'arch/ppc')
-rw-r--r--arch/ppc/lib/interrupts.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/arch/ppc/lib/interrupts.c b/arch/ppc/lib/interrupts.c
index b803952bad..72ddf36459 100644
--- a/arch/ppc/lib/interrupts.c
+++ b/arch/ppc/lib/interrupts.c
@@ -131,18 +131,3 @@ void timer_interrupt (struct pt_regs *regs)
board_show_activity (timestamp);
#endif /* CONFIG_SHOW_ACTIVITY */
}
-
-void reset_timer (void)
-{
- timestamp = 0;
-}
-
-ulong get_timer (ulong base)
-{
- return (timestamp - base);
-}
-
-void set_timer (ulong t)
-{
- timestamp = t;
-}