Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
629 |
giacomo |
1 |
#ifndef __DELAY__ |
|
|
2 |
#define __DELAY__ |
|
|
3 |
|
|
|
4 |
#include <linux/compatib.h> |
|
|
5 |
#define udelay(microsec) do { int _i = 4*microsec; while (--_i > 0) { __SLOW_DOWN_IO; }} while (0) |
|
|
6 |
|
|
|
7 |
#endif |