mirror of https://gitee.com/openkylin/linux.git
staging: vt6656: dead code remove bssdb.c
The header will be remove later Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d4d89fd171
commit
64d1c329fb
|
@ -9,7 +9,6 @@ vt6656_stage-y += main_usb.o \
|
|||
wctl.o \
|
||||
80211mgr.o \
|
||||
wcmd.o\
|
||||
bssdb.o \
|
||||
wpa2.o \
|
||||
rxtx.o \
|
||||
dpc.o \
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -208,69 +208,5 @@ typedef struct tagKnownNodeDB {
|
|||
|
||||
} KnownNodeDB, *PKnownNodeDB;
|
||||
|
||||
PKnownBSS BSSpSearchBSSList(struct vnt_private *, u8 *pbyDesireBSSID,
|
||||
u8 *pbyDesireSSID, CARD_PHY_TYPE ePhyType);
|
||||
|
||||
PKnownBSS BSSpAddrIsInBSSList(struct vnt_private *, u8 *abyBSSID,
|
||||
PWLAN_IE_SSID pSSID);
|
||||
|
||||
void BSSvClearBSSList(struct vnt_private *, int bKeepCurrBSSID);
|
||||
|
||||
int BSSbInsertToBSSList(struct vnt_private *,
|
||||
u8 *abyBSSIDAddr,
|
||||
u64 qwTimestamp,
|
||||
u16 wBeaconInterval,
|
||||
u16 wCapInfo,
|
||||
u8 byCurrChannel,
|
||||
PWLAN_IE_SSID pSSID,
|
||||
PWLAN_IE_SUPP_RATES pSuppRates,
|
||||
PWLAN_IE_SUPP_RATES pExtSuppRates,
|
||||
PERPObject psERP,
|
||||
PWLAN_IE_RSN pRSN,
|
||||
PWLAN_IE_RSN_EXT pRSNWPA,
|
||||
PWLAN_IE_COUNTRY pIE_Country,
|
||||
PWLAN_IE_QUIET pIE_Quiet,
|
||||
u32 uIELength,
|
||||
u8 *pbyIEs,
|
||||
void *pRxPacketContext);
|
||||
|
||||
int BSSbUpdateToBSSList(struct vnt_private *,
|
||||
u64 qwTimestamp,
|
||||
u16 wBeaconInterval,
|
||||
u16 wCapInfo,
|
||||
u8 byCurrChannel,
|
||||
int bChannelHit,
|
||||
PWLAN_IE_SSID pSSID,
|
||||
PWLAN_IE_SUPP_RATES pSuppRates,
|
||||
PWLAN_IE_SUPP_RATES pExtSuppRates,
|
||||
PERPObject psERP,
|
||||
PWLAN_IE_RSN pRSN,
|
||||
PWLAN_IE_RSN_EXT pRSNWPA,
|
||||
PWLAN_IE_COUNTRY pIE_Country,
|
||||
PWLAN_IE_QUIET pIE_Quiet,
|
||||
PKnownBSS pBSSList,
|
||||
u32 uIELength,
|
||||
u8 *pbyIEs,
|
||||
void *pRxPacketContext);
|
||||
|
||||
int BSSbIsSTAInNodeDB(struct vnt_private *, u8 * abyDstAddr,
|
||||
u32 *puNodeIndex);
|
||||
|
||||
void BSSvCreateOneNode(struct vnt_private *, u32 *puNodeIndex);
|
||||
|
||||
void BSSvUpdateAPNode(struct vnt_private *, u16 *pwCapInfo,
|
||||
PWLAN_IE_SUPP_RATES pItemRates, PWLAN_IE_SUPP_RATES pExtSuppRates);
|
||||
|
||||
void BSSvSecondCallBack(struct work_struct *work);
|
||||
|
||||
void BSSvUpdateNodeTxCounter(struct vnt_private *, u8 byTSR, u8 byPktNO);
|
||||
|
||||
void BSSvRemoveOneNode(struct vnt_private *, u32 uNodeIndex);
|
||||
|
||||
void BSSvAddMulticastNode(struct vnt_private *);
|
||||
|
||||
void BSSvClearNodeDBTable(struct vnt_private *, u32 uStartIndex);
|
||||
|
||||
void BSSvClearAnyBSSJoinRecord(struct vnt_private *);
|
||||
|
||||
#endif /* __BSSDB_H__ */
|
||||
|
|
Loading…
Reference in New Issue