Commit 57b298f5 authored by Chaehyun Lim's avatar Chaehyun Lim Committed by Greg Kroah-Hartman

staging: wilc1000: remove WILC_Uint64

Use u64 instead of WILC_Uint64.
Signed-off-by: default avatarChaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4e4467fd
...@@ -839,7 +839,7 @@ WILC_Sint32 ParseNetworkInfo(u8 *pu8MsgBuffer, tstrNetworkInfo **ppstrNetworkInf ...@@ -839,7 +839,7 @@ WILC_Sint32 ParseNetworkInfo(u8 *pu8MsgBuffer, tstrNetworkInfo **ppstrNetworkInf
u32Tsf_Lo = get_beacon_timestamp_lo(pu8msa); u32Tsf_Lo = get_beacon_timestamp_lo(pu8msa);
u32Tsf_Hi = get_beacon_timestamp_hi(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 */
get_ssid(pu8msa, pstrNetworkInfo->au8ssid, &(pstrNetworkInfo->u8SsidLen)); get_ssid(pu8msa, pstrNetworkInfo->au8ssid, &(pstrNetworkInfo->u8SsidLen));
......
...@@ -429,7 +429,7 @@ typedef struct { ...@@ -429,7 +429,7 @@ typedef struct {
u16 u16IEsLen; u16 u16IEsLen;
void *pJoinParams; void *pJoinParams;
tstrRSSI strRssi; tstrRSSI strRssi;
WILC_Uint64 u64Tsf; /* time-stamp [Low and High 64 bit] */ u64 u64Tsf; /* time-stamp [Low and High 64 bit] */
} tstrNetworkInfo; } tstrNetworkInfo;
/* This structure is used to support parsing of the received Association Response frame */ /* This structure is used to support parsing of the received Association Response frame */
......
...@@ -406,7 +406,7 @@ typedef struct { ...@@ -406,7 +406,7 @@ typedef struct {
/*Remain on channel struvture*/ /*Remain on channel struvture*/
tstrHostIfRemainOnChan strHostIfRemainOnChan; tstrHostIfRemainOnChan strHostIfRemainOnChan;
u8 u8RemainOnChan_pendingreq; u8 u8RemainOnChan_pendingreq;
WILC_Uint64 u64P2p_MgmtTimeout; u64 u64P2p_MgmtTimeout;
u8 u8P2PConnect; u8 u8P2PConnect;
#endif #endif
......
...@@ -14,7 +14,6 @@ ...@@ -14,7 +14,6 @@
#define WILC_OSW_INTERFACE_VER 2 #define WILC_OSW_INTERFACE_VER 2
/* Integer Types */ /* Integer Types */
typedef unsigned long long WILC_Uint64;
typedef signed char WILC_Sint8; typedef signed char WILC_Sint8;
typedef signed short WILC_Sint16; typedef signed short WILC_Sint16;
typedef signed int WILC_Sint32; typedef signed int WILC_Sint32;
......
...@@ -118,7 +118,7 @@ struct wilc_wfi_p2pListenParams { ...@@ -118,7 +118,7 @@ struct wilc_wfi_p2pListenParams {
struct ieee80211_channel *pstrListenChan; struct ieee80211_channel *pstrListenChan;
enum nl80211_channel_type tenuChannelType; enum nl80211_channel_type tenuChannelType;
u32 u32ListenDuration; u32 u32ListenDuration;
WILC_Uint64 u64ListenCookie; u64 u64ListenCookie;
u32 u32ListenSessionID; u32 u32ListenSessionID;
}; };
...@@ -130,7 +130,7 @@ struct WILC_WFI_priv { ...@@ -130,7 +130,7 @@ struct WILC_WFI_priv {
#ifdef WILC_P2P #ifdef WILC_P2P
struct wilc_wfi_p2pListenParams strRemainOnChanParams; struct wilc_wfi_p2pListenParams strRemainOnChanParams;
WILC_Uint64 u64tx_cookie; u64 u64tx_cookie;
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment