blob: 7f478778dd9c599ea25294f28434816054b26c8c (
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);
}
|