00001 00041 #ifndef TIMEOUT_H_INCLUDED 00042 #define TIMEOUT_H_INCLUDED 00043 00044 #include <arch/timeout.h> 00045 00046 static inline void timeout_init_ms(struct timeout *timeout, unsigned int ms) 00047 { 00048 timeout_init_us(timeout, ms * 1000); 00049 } 00050 00051 #endif /* TIMEOUT_H_INCLUDED */
1.5.8