00001 00041 #ifndef DELAY_H_INCLUDED 00042 #define DELAY_H_INCLUDED 00043 00044 unsigned int ns2cyc(unsigned int ns, unsigned int rate); 00045 void udelay(unsigned long us); 00046 00052 static inline void mdelay(unsigned long ms) 00053 { 00054 udelay(ms * 1000); 00055 } 00056 00057 #endif /* DELAY_H_INCLUDED */
1.5.8