blob: 5c0916f34961b6d2f9688df21ccff814ce4467ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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);
}
|