9
0
Fork 0

svn_rev_195

remove unneeded timer functions
This commit is contained in:
Sascha Hauer 2007-07-05 18:01:31 +02:00 committed by Sascha Hauer
parent 0c2b8f687e
commit 144592aacd
1 changed files with 0 additions and 15 deletions

View File

@ -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;
}