staging: wilc1000: remove WILC_Uint64
Use u64 instead of WILC_Uint64. Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4e4467fdd6
commit
57b298f54e
|
@ -839,7 +839,7 @@ WILC_Sint32 ParseNetworkInfo(u8 *pu8MsgBuffer, tstrNetworkInfo **ppstrNetworkInf
|
|||
u32Tsf_Lo = get_beacon_timestamp_lo(pu8msa);
|
||||
u32Tsf_Hi = get_beacon_timestamp_hi(pu8msa);
|
||||
|
||||
pstrNetworkInfo->u64Tsf = u32Tsf_Lo | ((WILC_Uint64)u32Tsf_Hi << 32);
|
||||
pstrNetworkInfo->u64Tsf = u32Tsf_Lo | ((u64)u32Tsf_Hi << 32);
|
||||
|
||||
/* Get SSID */
|
||||
get_ssid(pu8msa, pstrNetworkInfo->au8ssid, &(pstrNetworkInfo->u8SsidLen));
|
||||
|
|
|
@ -429,7 +429,7 @@ typedef struct {
|
|||
u16 u16IEsLen;
|
||||
void *pJoinParams;
|
||||
tstrRSSI strRssi;
|
||||
WILC_Uint64 u64Tsf; /* time-stamp [Low and High 64 bit] */
|
||||
u64 u64Tsf; /* time-stamp [Low and High 64 bit] */
|
||||
} tstrNetworkInfo;
|
||||
|
||||
/* This structure is used to support parsing of the received Association Response frame */
|
||||
|
|
|
@ -406,7 +406,7 @@ typedef struct {
|
|||
/*Remain on channel struvture*/
|
||||
tstrHostIfRemainOnChan strHostIfRemainOnChan;
|
||||
u8 u8RemainOnChan_pendingreq;
|
||||
WILC_Uint64 u64P2p_MgmtTimeout;
|
||||
u64 u64P2p_MgmtTimeout;
|
||||
u8 u8P2PConnect;
|
||||
#endif
|
||||
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
#define WILC_OSW_INTERFACE_VER 2
|
||||
|
||||
/* Integer Types */
|
||||
typedef unsigned long long WILC_Uint64;
|
||||
typedef signed char WILC_Sint8;
|
||||
typedef signed short WILC_Sint16;
|
||||
typedef signed int WILC_Sint32;
|
||||
|
|
|
@ -118,7 +118,7 @@ struct wilc_wfi_p2pListenParams {
|
|||
struct ieee80211_channel *pstrListenChan;
|
||||
enum nl80211_channel_type tenuChannelType;
|
||||
u32 u32ListenDuration;
|
||||
WILC_Uint64 u64ListenCookie;
|
||||
u64 u64ListenCookie;
|
||||
u32 u32ListenSessionID;
|
||||
};
|
||||
|
||||
|
@ -130,7 +130,7 @@ struct WILC_WFI_priv {
|
|||
|
||||
#ifdef WILC_P2P
|
||||
struct wilc_wfi_p2pListenParams strRemainOnChanParams;
|
||||
WILC_Uint64 u64tx_cookie;
|
||||
u64 u64tx_cookie;
|
||||
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue