blob: f9703cb05ac1b2259ed7951e54c1decb8cc51e52 [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);
}
}