blob: 5c0916f34961b6d2f9688df21ccff814ce4467ea [file] [log] [blame]
#include <delay.h>
void mdelay(unsigned int msecs)
{
unsigned int i;
for(i = 0; i < msecs; i++)
udelay(1000);
}
void delay(unsigned int secs)
{
unsigned int i;
for(i = 0; i < secs; i++)
mdelay(1000);
}