staging: wilc1000: clean up sleep wrapper
[cascardo/linux.git] / drivers / staging / wilc1000 / wilc_sleep.h
1 #ifndef __WILC_SLEEP_H__
2 #define __WILC_SLEEP_H__
3
4 /*!
5  *  @brief      forces the current thread to sleep until the given time has elapsed
6  *  @param[in]  u32TimeMilliSec Time to sleep in Milli seconds
7  *  @sa         WILC_SleepMicrosec
8  *  @author     syounan
9  *  @date       10 Aug 2010
10  *  @version    1.0
11  *  @note       This function offers a relatively innacurate and low resolution
12  *              sleep, for accurate high resolution sleep use u32TimeMicoSec
13  */
14 /* TODO: remove and open-code in callers */
15 void WILC_Sleep(WILC_Uint32 u32TimeMilliSec);
16
17 #endif