ticks_since_boot needed for sandpoint

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1268 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Greg Watson 2003-11-09 23:04:18 +00:00
parent c8ee08a9bb
commit 86a17433e3
1 changed files with 0 additions and 10 deletions

View File

@ -10,22 +10,12 @@ unsigned long get_hz(void)
return get_clock_speed();
}
#if 0
unsigned long ticks_since_boot(void)
{
extern unsigned long _get_ticks(void);
return _get_ticks();
}
void sleep_ticks(unsigned long ticks)
{
unsigned long now = ticks_since_boot();
unsigned long then = ticks + now;
while(now < then)
now = ticks_since_boot();
}
#endif
void udelay(int usecs)
{
extern void _wait_ticks(unsigned long);