alistair23-linux/drivers/staging/wilc1000/wilc_sleep.h
Dean Lee c3ea8a7200 staging: wilc1000: rework include wilc_oswrapper.h
rework line '#include "wilc_oswrapper.h"'
it does not used anywhere after change own data type to common data type.

Signed-off-by: Dean Lee <dean.lee@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2015-06-16 19:18:15 -07:00

21 lines
579 B
C

#ifndef __WILC_SLEEP_H__
#define __WILC_SLEEP_H__
#include <linux/types.h>
#include <linux/delay.h>
/*!
* @brief forces the current thread to sleep until the given time has elapsed
* @param[in] u32TimeMilliSec Time to sleep in Milli seconds
* @sa WILC_SleepMicrosec
* @author syounan
* @date 10 Aug 2010
* @version 1.0
* @note This function offers a relatively innacurate and low resolution
* sleep, for accurate high resolution sleep use u32TimeMicoSec
*/
/* TODO: remove and open-code in callers */
void WILC_Sleep(u32 u32TimeMilliSec);
#endif