From penberg@cs.helsinki.fi Wed Nov 12 13:43:42 2008 From: Pekka J Enberg Date: Thu, 30 Oct 2008 13:04:29 +0200 (EET) Subject: Staging: w35und: #include cleanup To: Greg Kroah-Hartman Cc: Pavel Machek Message-ID: From: Pekka Enberg This patch moves #includes from sysdef.h and common.h to the files which actually need them. This makes the dependencies less complex and allows us to move code around much easily. Acked-by: Pavel Machek Signed-off-by: Pekka Enberg --- drivers/staging/winbond/adapter.h | 11 +++++++++++ drivers/staging/winbond/bss_f.h | 12 ++++++++---- drivers/staging/winbond/bssdscpt.h | 10 +++++++++- drivers/staging/winbond/ds_tkip.h | 8 ++++++-- drivers/staging/winbond/gl_80211.h | 3 ++- drivers/staging/winbond/linux/common.h | 21 --------------------- drivers/staging/winbond/linux/sysdef.h | 29 ----------------------------- drivers/staging/winbond/linux/wb35reg.c | 3 +++ drivers/staging/winbond/linux/wb35reg_f.h | 7 ++++++- drivers/staging/winbond/linux/wb35reg_s.h | 9 ++++++++- drivers/staging/winbond/linux/wb35rx.c | 3 +++ drivers/staging/winbond/linux/wb35rx_f.h | 9 ++++++--- drivers/staging/winbond/linux/wb35tx.c | 5 ++++- drivers/staging/winbond/linux/wb35tx_f.h | 7 ++++++- drivers/staging/winbond/linux/wb35tx_s.h | 10 ++++++---- drivers/staging/winbond/linux/wbusb.c | 6 +++++- drivers/staging/winbond/linux/wbusb_s.h | 12 +++++++----- drivers/staging/winbond/localpara.h | 8 +++++++- drivers/staging/winbond/mac_structures.h | 7 ++----- drivers/staging/winbond/mds.c | 7 +++++++ drivers/staging/winbond/mds_f.h | 8 +++++++- drivers/staging/winbond/mds_s.h | 13 ++++++++++++- drivers/staging/winbond/mlme_s.h | 11 ++++++++++- drivers/staging/winbond/mlmetxrx.c | 2 ++ drivers/staging/winbond/mlmetxrx_f.h | 2 ++ drivers/staging/winbond/mto.c | 3 +++ drivers/staging/winbond/mto.h | 2 ++ drivers/staging/winbond/mto_f.h | 6 ++++++ drivers/staging/winbond/phy_calibration.c | 1 + drivers/staging/winbond/phy_calibration.h | 6 ++++++ drivers/staging/winbond/reg.c | 1 + drivers/staging/winbond/rxisr.c | 1 + drivers/staging/winbond/scan_s.h | 7 +++++++ drivers/staging/winbond/sme_api.c | 1 + drivers/staging/winbond/sme_api.h | 4 ++++ drivers/staging/winbond/sme_s.h | 9 +++++++++ drivers/staging/winbond/wbhal.c | 2 ++ drivers/staging/winbond/wbhal_f.h | 14 +++++--------- drivers/staging/winbond/wbhal_s.h | 9 ++++++++- drivers/staging/winbond/wblinux.c | 6 ++++++ drivers/staging/winbond/wblinux_f.h | 7 +++++++ 41 files changed, 208 insertions(+), 94 deletions(-) --- a/drivers/staging/winbond/adapter.h +++ b/drivers/staging/winbond/adapter.h @@ -1,3 +1,12 @@ +#ifndef __WINBOND_ADAPTER_H +#define __WINBOND_ADAPTER_H + +#include + +#include "bssdscpt.h" +#include "mto.h" +#include "wbhal_s.h" + #define OS_SET_SHUTDOWN( _A ) _A->shutdown=1 #define OS_SET_RESUME( _A ) _A->shutdown=0 #define OS_STOP( _A ) WBLINUX_stop( _A ) @@ -45,3 +54,5 @@ struct wb35_adapter { u8 LinkName[MAX_ANSI_STRING]; }; + +#endif --- a/drivers/staging/winbond/bssdscpt.h +++ b/drivers/staging/winbond/bssdscpt.h @@ -1,3 +1,11 @@ +#ifndef __WINBOND_BSSDSCPT_H +#define __WINBOND_BSSDSCPT_H + +#include + +#include "mds_s.h" +#include "mlme_s.h" + //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // bssdscpt.c // BSS descriptor data base @@ -153,4 +161,4 @@ typedef struct BSSDescriptionElement #define psBSS(i) (&(adapter->asBSSDescriptElement[(i)])) - +#endif --- a/drivers/staging/winbond/bss_f.h +++ b/drivers/staging/winbond/bss_f.h @@ -1,3 +1,10 @@ +#ifndef __WINBOND_BSS_F_H +#define __WINBOND_BSS_F_H + +#include "adapter.h" + +struct PMKID_Information_Element; + // // BSS descriptor DataBase management global function // @@ -53,7 +60,4 @@ u16 SearchPmkid(struct wb35_adapter * ad struct PMKID_Information_Element * AssoReq_PMKID ); #endif - - - - +#endif --- a/drivers/staging/winbond/ds_tkip.h +++ b/drivers/staging/winbond/ds_tkip.h @@ -1,3 +1,8 @@ +#ifndef __WINBOND_DS_TKIP_H +#define __WINBOND_DS_TKIP_H + +#include + // Rotation functions on 32 bit values #define ROL32( A, n ) \ ( ((A) << (n)) | ( ((A)>>(32-(n))) & ( (1UL << (n)) - 1 ) ) ) @@ -29,5 +34,4 @@ typedef struct tkip void Mds_MicGet( void* adapter, void* pRxLayer1, u8 *pKey, u8 *pMic ); void Mds_MicFill( void* adapter, void* pDes, u8 *XmitBufAddress ); - - +#endif --- a/drivers/staging/winbond/gl_80211.h +++ b/drivers/staging/winbond/gl_80211.h @@ -1,7 +1,8 @@ - #ifndef __GL_80211_H__ #define __GL_80211_H__ +#include + /****************** CONSTANT AND MACRO SECTION ******************************/ /* BSS Type */ --- a/drivers/staging/winbond/linux/common.h +++ b/drivers/staging/winbond/linux/common.h @@ -10,27 +10,6 @@ #ifndef COMMON_DEF #define COMMON_DEF -#include -#include -#include //need for kernel alert -#include -#include -#include -#include //memory allocate -#include -#include -#include -#include //need for init and exit modules marco -#include -#include -#include -#include -#include -#include -#include -#include - - //#define DEBUG_ENABLED 1 //================================================================================================== --- a/drivers/staging/winbond/linux/sysdef.h +++ b/drivers/staging/winbond/linux/sysdef.h @@ -37,36 +37,7 @@ #define _PE_USB_INI_DUMP_ #endif - - -#include "common.h" // Individual file depends on OS - -#include "../wb35_ver.h" -#include "../mac_structures.h" -#include "../ds_tkip.h" -#include "../localpara.h" -#include "../sme_s.h" -#include "../scan_s.h" -#include "../mds_s.h" -#include "../mlme_s.h" -#include "../bssdscpt.h" -#include "../sme_api.h" -#include "../gl_80211.h" -#include "../mto.h" -#include "../wbhal_s.h" - - -#include "../adapter.h" - -#include "../mlme_mib.h" -#include "../mds_f.h" -#include "../bss_f.h" -#include "../mlmetxrx_f.h" -#include "../mto_f.h" -#include "../wbhal_f.h" -#include "../wblinux_f.h" // Kernel Timer resolution, NDIS is 10ms, 10000us #define MIN_TIMEOUT_VAL (10) //ms - #endif --- a/drivers/staging/winbond/linux/wb35reg.c +++ b/drivers/staging/winbond/linux/wb35reg.c @@ -1,4 +1,7 @@ #include "sysdef.h" +#include "wb35reg_f.h" + +#include extern void phy_calibration_winbond(hw_data_t *phw_data, u32 frequency); --- a/drivers/staging/winbond/linux/wb35reg_f.h +++ b/drivers/staging/winbond/linux/wb35reg_f.h @@ -1,3 +1,8 @@ +#ifndef __WINBOND_WB35REG_F_H +#define __WINBOND_WB35REG_F_H + +#include "../wbhal_s.h" + //==================================== // Interface function declare //==================================== @@ -53,4 +58,4 @@ void Wb35Reg_phy_calibration( phw_data_ void Wb35Reg_Update( phw_data_t pHwData, u16 RegisterNo, u32 RegisterValue ); unsigned char adjust_TXVGA_for_iq_mag( phw_data_t pHwData ); - +#endif --- a/drivers/staging/winbond/linux/wb35reg_s.h +++ b/drivers/staging/winbond/linux/wb35reg_s.h @@ -1,3 +1,10 @@ +#ifndef __WINBOND_WB35REG_S_H +#define __WINBOND_WB35REG_S_H + +#include +#include +#include + //======================================================================================= /* HAL setting function @@ -162,4 +169,4 @@ struct wb35_reg { }; - +#endif --- a/drivers/staging/winbond/linux/wb35rx.c +++ b/drivers/staging/winbond/linux/wb35rx.c @@ -8,7 +8,10 @@ // Processing the Rx message from down layer // //============================================================================ +#include + #include "sysdef.h" +#include "wb35rx_f.h" void Wb35Rx_start(phw_data_t pHwData) { --- a/drivers/staging/winbond/linux/wb35rx_f.h +++ b/drivers/staging/winbond/linux/wb35rx_f.h @@ -1,3 +1,8 @@ +#ifndef __WINBOND_WB35RX_F_H +#define __WINBOND_WB35RX_F_H + +#include "../wbhal_s.h" + //==================================== // Interface function declare //==================================== @@ -12,6 +17,4 @@ void Wb35Rx_start( phw_data_t pHwData void Wb35Rx( phw_data_t pHwData ); void Wb35Rx_Complete(struct urb *urb); - - - +#endif --- a/drivers/staging/winbond/linux/wb35tx.c +++ b/drivers/staging/winbond/linux/wb35tx.c @@ -8,8 +8,11 @@ // Processing the Tx message and put into down layer // //============================================================================ -#include "sysdef.h" +#include +#include "wb35tx_f.h" +#include "../mds_f.h" +#include "sysdef.h" unsigned char Wb35Tx_get_tx_buffer(phw_data_t pHwData, u8 **pBuffer) --- a/drivers/staging/winbond/linux/wb35tx_f.h +++ b/drivers/staging/winbond/linux/wb35tx_f.h @@ -1,3 +1,8 @@ +#ifndef __WINBOND_WB35TX_F_H +#define __WINBOND_WB35TX_F_H + +#include "../wbhal_f.h" + //==================================== // Interface function declare //==================================== @@ -17,4 +22,4 @@ void Wb35Tx_reset_descriptor( phw_data_ void Wb35Tx_CurrentTime( phw_data_t pHwData, u32 TimeCount ); - +#endif --- a/drivers/staging/winbond/linux/wb35tx_s.h +++ b/drivers/staging/winbond/linux/wb35tx_s.h @@ -1,3 +1,8 @@ +#ifndef __WINBOND_WB35_TX_S_H +#define __WINBOND_WB35_TX_S_H + +#include "../mds_s.h" + //==================================== // IS89C35 Tx related definition //==================================== @@ -41,7 +46,4 @@ typedef struct _WB35TX } WB35TX, *PWB35TX; - - - - +#endif --- a/drivers/staging/winbond/linux/wbusb.c +++ b/drivers/staging/winbond/linux/wbusb.c @@ -3,8 +3,12 @@ * * Distribute under GPLv2. */ -#include "sysdef.h" #include +#include + +#include "../mlmetxrx_f.h" +#include "../wbhal_f.h" +#include "../wblinux_f.h" MODULE_AUTHOR(DRIVER_AUTHOR); MODULE_DESCRIPTION(DRIVER_DESC); --- a/drivers/staging/winbond/linux/wbusb_s.h +++ b/drivers/staging/winbond/linux/wbusb_s.h @@ -11,6 +11,11 @@ // //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +#ifndef __WINBOND_WBUSB_S_H +#define __WINBOND_WBUSB_S_H + +#include + //--------------------------------------------------------------------------- // RW_CONTEXT -- // @@ -23,16 +28,13 @@ typedef struct _RW_CONTEXT void* pCallBackFunctionParameter; } RW_CONTEXT, *PRW_CONTEXT; - - - #define DRIVER_AUTHOR "Original by: Jeff Lee Adapted to 2.6.x by Costantino Leandro (Rxart Desktop) " #define DRIVER_DESC "IS89C35 802.11bg WLAN USB Driver" - - typedef struct _WBUSB { u32 IsUsb20; struct usb_device *udev; u32 DetectCount; } WBUSB, *PWBUSB; + +#endif --- a/drivers/staging/winbond/localpara.h +++ b/drivers/staging/winbond/localpara.h @@ -1,6 +1,12 @@ +#ifndef __WINBOND_LOCALPARA_H +#define __WINBOND_LOCALPARA_H + //============================================================= // LocalPara.h - //============================================================= + +#include "mac_structures.h" + //Define the local ability #define LOCAL_DEFAULT_BEACON_PERIOD 100 //ms @@ -272,4 +278,4 @@ typedef struct LOCAL_PARA } WB_LOCALDESCRIPT, *PWB_LOCALDESCRIPT; - +#endif --- a/drivers/staging/winbond/mac_structures.h +++ b/drivers/staging/winbond/mac_structures.h @@ -21,6 +21,7 @@ #ifndef _MAC_Structures_H_ #define _MAC_Structures_H_ +#include //========================================================= // Some miscellaneous definitions @@ -115,10 +116,6 @@ #define WLAN_MAX_PAIRWISE_CIPHER_SUITE_COUNT ((u16) 6) #define WLAN_MAX_AUTH_KEY_MGT_SUITE_LIST_COUNT ((u16) 2) -#ifdef WB_LINUX -#define UNALIGNED -#endif - //======================================================== typedef enum enum_PowerManagementMode { @@ -464,7 +461,7 @@ struct RSN_Information_Element { u8 Element_ID; u8 Length; - UNALIGNED SUITE_SELECTOR OuiWPAAdditional;//WPA version 2.0 additional field, and should be 00:50:F2:01 + SUITE_SELECTOR OuiWPAAdditional;//WPA version 2.0 additional field, and should be 00:50:F2:01 u16 Version; SUITE_SELECTOR GroupKeySuite; u16 PairwiseKeySuiteCount; --- a/drivers/staging/winbond/mds.c +++ b/drivers/staging/winbond/mds.c @@ -1,4 +1,11 @@ +#include "ds_tkip.h" +#include "gl_80211.h" +#include "mds_f.h" +#include "mlmetxrx_f.h" +#include "mto_f.h" #include "os_common.h" +#include "wbhal_f.h" +#include "wblinux_f.h" void Mds_reset_descriptor(struct wb35_adapter * adapter) --- a/drivers/staging/winbond/mds_f.h +++ b/drivers/staging/winbond/mds_f.h @@ -1,3 +1,9 @@ +#ifndef __WINBOND_MDS_F_H +#define __WINBOND_MDS_F_H + +#include "wbhal_s.h" +#include "adapter.h" + unsigned char Mds_initial( struct wb35_adapter *adapter ); void Mds_Destroy( struct wb35_adapter *adapter ); void Mds_Tx( struct wb35_adapter *adapter ); @@ -24,4 +30,4 @@ void MDS_GetNextPacketComplete( struct void MDS_SendResult( struct wb35_adapter *adapter, u8 PacketId, unsigned char SendOK ); void MDS_EthernetPacketReceive( struct wb35_adapter *adapter, PRXLAYER1 pRxLayer1 ); - +#endif --- a/drivers/staging/winbond/mds_s.h +++ b/drivers/staging/winbond/mds_s.h @@ -1,3 +1,14 @@ +#ifndef __WINBOND_MDS_H +#define __WINBOND_MDS_H + +#include +#include +#include + +#include "localpara.h" +#include "mac_structures.h" +#include "scan_s.h" + //////////////////////////////////////////////////////////////////////////////////////////////////////// #define MAX_USB_TX_DESCRIPTOR 15 // IS89C35 ability #define MAX_USB_TX_BUFFER_NUMBER 4 // Virtual pre-buffer number of MAX_USB_TX_BUFFER @@ -178,4 +189,4 @@ typedef struct _RXLAYER1 }RXLAYER1, * PRXLAYER1; - +#endif --- a/drivers/staging/winbond/mlme_s.h +++ b/drivers/staging/winbond/mlme_s.h @@ -1,3 +1,12 @@ +#ifndef __WINBOND_MLME_H +#define __WINBOND_MLME_H + +#include +#include + +#include "mac_structures.h" +#include "mds_s.h" + //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // Mlme.h // Define the related definitions of MLME module @@ -192,4 +201,4 @@ typedef struct _RXDATA }__attribute__ ((packed)) RXDATA, *psRXDATA; - +#endif --- a/drivers/staging/winbond/mlmetxrx.c +++ b/drivers/staging/winbond/mlmetxrx.c @@ -17,6 +17,8 @@ //============================================================================ #include "os_common.h" +#include "mds_f.h" + void MLMEResetTxRx(struct wb35_adapter * adapter) { s32 i; --- a/drivers/staging/winbond/mlmetxrx_f.h +++ b/drivers/staging/winbond/mlmetxrx_f.h @@ -8,6 +8,8 @@ #ifndef _MLMETXRX_H #define _MLMETXRX_H +#include "adapter.h" + void MLMEProcThread( struct wb35_adapter * adapter --- a/drivers/staging/winbond/mto.c +++ b/drivers/staging/winbond/mto.c @@ -23,6 +23,9 @@ // LA20040210_DTO kevin #include "os_common.h" +#include "sme_api.h" +#include "gl_80211.h" +#include "wbhal_f.h" // Declare SQ3 to rate and fragmentation threshold table // Declare fragmentation thresholds table --- a/drivers/staging/winbond/mto_f.h +++ b/drivers/staging/winbond/mto_f.h @@ -1,3 +1,8 @@ +#ifndef __WINBOND_MTO_F_H +#define __WINBOND_MTO_F_H + +#include "adapter.h" + extern void MTO_Init(struct wb35_adapter *); extern void MTO_PeriodicTimerExpired(struct wb35_adapter *); extern void MTO_SetDTORateRange(struct wb35_adapter *, u8 *, u8); @@ -5,3 +10,4 @@ extern u8 MTO_GetTxRate(MTO_FUNC_INPUT, extern u8 MTO_GetTxFallbackRate(MTO_FUNC_INPUT); extern void MTO_SetTxCount(MTO_FUNC_INPUT, u8 t0, u8 index); +#endif --- a/drivers/staging/winbond/mto.h +++ b/drivers/staging/winbond/mto.h @@ -11,6 +11,8 @@ #ifndef __MTO_H__ #define __MTO_H__ +#include + #define MTO_DEFAULT_TH_CNT 5 #define MTO_DEFAULT_TH_SQ3 112 //OLD IS 13 reference JohnXu #define MTO_DEFAULT_TH_IDLE_SLOT 15 --- a/drivers/staging/winbond/phy_calibration.c +++ b/drivers/staging/winbond/phy_calibration.c @@ -12,6 +12,7 @@ /****************** INCLUDE FILES SECTION ***********************************/ #include "os_common.h" #include "phy_calibration.h" +#include "wbhal_f.h" /****************** DEBUG CONSTANT AND MACRO SECTION ************************/ --- a/drivers/staging/winbond/phy_calibration.h +++ b/drivers/staging/winbond/phy_calibration.h @@ -1,3 +1,8 @@ +#ifndef __WINBOND_PHY_CALIBRATION_H +#define __WINBOND_PHY_CALIBRATION_H + +#include "wbhal_f.h" + // 20031229 Turbo add #define REG_AGC_CTRL1 0x1000 #define REG_AGC_CTRL2 0x1004 @@ -99,3 +104,4 @@ void phy_set_rf_data( phw_data_t pHwData, u32 index, u32 value ); #define phy_init_rf( _A ) //RFSynthesizer_initial( _A ) +#endif --- a/drivers/staging/winbond/reg.c +++ b/drivers/staging/winbond/reg.c @@ -1,4 +1,5 @@ #include "os_common.h" +#include "wbhal_f.h" /////////////////////////////////////////////////////////////////////////////////////////////////// // Original Phy.h --- a/drivers/staging/winbond/rxisr.c +++ b/drivers/staging/winbond/rxisr.c @@ -1,4 +1,5 @@ #include "os_common.h" +#include "adapter.h" static void RxTimerHandler(unsigned long data) { --- a/drivers/staging/winbond/scan_s.h +++ b/drivers/staging/winbond/scan_s.h @@ -1,3 +1,9 @@ +#ifndef __WINBOND_SCAN_S_H +#define __WINBOND_SCAN_S_H + +#include +#include "localpara.h" + // // SCAN task global CONSTANTS, STRUCTURES, variables // @@ -112,3 +118,4 @@ typedef struct _SCAN_PARAMETERS //static void vScanTimerStart(struct wb35_adapter * adapter, int timeout_value); //static void vScanTimerStop(struct wb35_adapter * adapter); +#endif --- a/drivers/staging/winbond/sme_api.c +++ b/drivers/staging/winbond/sme_api.c @@ -6,6 +6,7 @@ // //------------------------------------------------------------------------------------ #include "os_common.h" +#include s8 sme_get_rssi(void *pcore_data, s32 *prssi) { --- a/drivers/staging/winbond/sme_api.h +++ b/drivers/staging/winbond/sme_api.h @@ -13,6 +13,10 @@ #ifndef __SME_API_H__ #define __SME_API_H__ +#include + +#include "localpara.h" + /****************** INCLUDE FILES SECTION ***********************************/ //#include "GL\gl_core.h" --- a/drivers/staging/winbond/sme_s.h +++ b/drivers/staging/winbond/sme_s.h @@ -1,3 +1,11 @@ +#ifndef __WINBOND_SME_S_H +#define __WINBOND_SME_S_H + +#include + +#include "mac_structures.h" +#include "localpara.h" + // // SME_S.H - // SME task global CONSTANTS, STRUCTURES, variables @@ -225,3 +233,4 @@ typedef struct _SME_PARAMETERS // Static function +#endif --- a/drivers/staging/winbond/wbhal.c +++ b/drivers/staging/winbond/wbhal.c @@ -1,4 +1,6 @@ #include "os_common.h" +#include "wbhal_f.h" +#include "wblinux_f.h" void hal_get_ethernet_address( phw_data_t pHwData, u8 *current_address ) { --- a/drivers/staging/winbond/wbhal_f.h +++ b/drivers/staging/winbond/wbhal_f.h @@ -1,15 +1,11 @@ //===================================================================== // Device related include //===================================================================== -#ifdef WB_LINUX - #include "linux/wb35reg_f.h" - #include "linux/wb35tx_f.h" - #include "linux/wb35rx_f.h" -#else - #include "wb35reg_f.h" - #include "wb35tx_f.h" - #include "wb35rx_f.h" -#endif +#include "linux/wb35reg_f.h" +#include "linux/wb35tx_f.h" +#include "linux/wb35rx_f.h" + +#include "adapter.h" //==================================================================================== // Function declaration --- a/drivers/staging/winbond/wbhal_s.h +++ b/drivers/staging/winbond/wbhal_s.h @@ -1,3 +1,10 @@ +#ifndef __WINBOND_WBHAL_S_H +#define __WINBOND_WBHAL_S_H + +#include + +#include "linux/common.h" + //[20040722 WK] #define HAL_LED_SET_MASK 0x001c //20060901 Extend #define HAL_LED_SET_SHIFT 2 @@ -612,4 +619,4 @@ typedef struct _HAL_RATE u32 NumRate54M; } HAL_RATE, *PHAL_RATE; - +#endif --- a/drivers/staging/winbond/wblinux.c +++ b/drivers/staging/winbond/wblinux.c @@ -8,7 +8,13 @@ // Linux releated routines // //============================================================================ +#include + +#include "mds_f.h" +#include "mto_f.h" #include "os_common.h" +#include "wbhal_f.h" +#include "wblinux_f.h" unsigned char WBLINUX_Initial(struct wb35_adapter * adapter) --- a/drivers/staging/winbond/wblinux_f.h +++ b/drivers/staging/winbond/wblinux_f.h @@ -1,3 +1,9 @@ +#ifndef __WBLINUX_F_H +#define __WBLINUX_F_H + +#include "adapter.h" +#include "mds_s.h" + //========================================================================= // Copyright (c) 1996-2004 Winbond Electronic Corporation // @@ -16,3 +22,4 @@ void WBLINUX_stop( struct wb35_adapter void WbWlanHalt( struct wb35_adapter *adapter ); unsigned char WbWLanInitialize(struct wb35_adapter *adapter); +#endif