All pastes #388946 Raw Edit

Miscellany

public text v1 · immutable
#388946 ·published 2007-03-10 12:20 UTC
rendered paste body
 static inline void udelay(unsigned usecs)
 {
     unsigned stop = USEC_TIMER + usecs;
     while (TIME_AFTER(USEC_TIMER, stop));
 }