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>
This commit is contained in:
Dean Lee 2015-06-16 15:28:21 +09:00 committed by Greg Kroah-Hartman
parent 56df900cb4
commit c3ea8a7200
14 changed files with 27 additions and 10 deletions

View file

@ -12,7 +12,6 @@
#ifndef CORECONFIGURATOR_H
#define CORECONFIGURATOR_H
#include "wilc_oswrapper.h"
#include "wilc_wlan_if.h"
/*****************************************************************************/
/* Constants */

View file

@ -1,6 +1,5 @@
#include "wilc_oswrapper.h"
#include "fifo_buffer.h"

View file

@ -1,5 +1,8 @@
#include "wilc_oswrapper.h"
#include <linux/types.h>
#include <linux/semaphore.h>
#include "wilc_memory.h"
#include "wilc_strutils.h"
#define tHANDLE void *

View file

@ -1,5 +1,4 @@
#include "host_interface.h"
#include "wilc_oswrapper.h"
#include "coreconfigurator.h"
extern s32 TransportInit(void);

View file

@ -1,5 +1,5 @@
#include "wilc_oswrapper.h"
#include "wilc_memory.h"
/*!
* @author syounan

View file

@ -10,6 +10,9 @@
* @version 1.0
*/
#include <linux/types.h>
#include <linux/slab.h>
/*!
* @struct tstrWILC_MemoryAttrs
* @brief Memory API options
@ -234,4 +237,3 @@ void WILC_MemoryFree(const void *pvBlock, tstrWILC_MemoryAttrs *strAttrs,
#endif

View file

@ -1,5 +1,5 @@
#include "wilc_oswrapper.h"
#include "wilc_msgqueue.h"
#include <linux/spinlock.h>
/*!

View file

@ -10,6 +10,11 @@
* @version 1.0
*/
#include "wilc_platform.h"
#include "wilc_errorsupport.h"
#include "wilc_memory.h"
#include "wilc_strutils.h"
/*!
* @struct tstrWILC_MsgQueueAttrs
* @brief Message Queue API options

View file

@ -1,5 +1,5 @@
#include "wilc_oswrapper.h"
#include "wilc_sleep.h"
/*
* @author mdaftedar

View file

@ -1,6 +1,9 @@
#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

View file

@ -1,7 +1,7 @@
#define _CRT_SECURE_NO_DEPRECATE
#include "wilc_oswrapper.h"
#include "wilc_strutils.h"
/*!

View file

@ -10,6 +10,10 @@
* @version 1.0
*/
#include <linux/types.h>
#include <linux/string.h>
#include "wilc_errorsupport.h"
/*!
* @brief Compares two memory buffers
* @param[in] pvArg1 pointer to the first memory location

View file

@ -1,5 +1,5 @@
#include "wilc_oswrapper.h"
#include "wilc_timer.h"
WILC_ErrNo WILC_TimerCreate(WILC_TimerHandle *pHandle,
tpfWILC_TimerFunction pfCallback, tstrWILC_TimerAttrs *pstrAttrs)

View file

@ -10,6 +10,9 @@
* @version 1.0
*/
#include "wilc_platform.h"
#include "wilc_errorsupport.h"
typedef void (*tpfWILC_TimerFunction)(void *);
/*!