1
0
Fork 0

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>
hifive-unleashed-5.1
Chaehyun Lim 2015-06-11 14:35:56 +09:00 committed by Greg Kroah-Hartman
parent 4e4467fdd6
commit 57b298f54e
5 changed files with 5 additions and 6 deletions

View File

@ -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));

View File

@ -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 */

View File

@ -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

View File

@ -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;

View File

@ -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