Subversion Repositories shark

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 pj 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