mirror of https://gitee.com/openkylin/linux.git
staging: vt6655: dead code remove bssdb.c
header will be removed later Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1a48e8c412
commit
7d48710aec
|
@ -9,7 +9,6 @@ vt6655_stage-y += device_main.o \
|
|||
baseband.o \
|
||||
wctl.o \
|
||||
80211mgr.o \
|
||||
bssdb.o \
|
||||
rxtx.o \
|
||||
dpc.o \
|
||||
power.o \
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -207,119 +207,4 @@ typedef struct tagKnownNodeDB {
|
|||
unsigned int uTimeCount;
|
||||
} KnownNodeDB, *PKnownNodeDB;
|
||||
|
||||
PKnownBSS
|
||||
BSSpSearchBSSList(
|
||||
void *hDeviceContext,
|
||||
unsigned char *pbyDesireBSSID,
|
||||
unsigned char *pbyDesireSSID,
|
||||
CARD_PHY_TYPE ePhyType
|
||||
);
|
||||
|
||||
PKnownBSS
|
||||
BSSpAddrIsInBSSList(
|
||||
void *hDeviceContext,
|
||||
unsigned char *abyBSSID,
|
||||
PWLAN_IE_SSID pSSID
|
||||
);
|
||||
|
||||
void
|
||||
BSSvClearBSSList(
|
||||
void *hDeviceContext,
|
||||
bool bKeepCurrBSSID
|
||||
);
|
||||
|
||||
bool
|
||||
BSSbInsertToBSSList(
|
||||
void *hDeviceContext,
|
||||
unsigned char *abyBSSIDAddr,
|
||||
__le64 qwTimestamp,
|
||||
unsigned short wBeaconInterval,
|
||||
unsigned short wCapInfo,
|
||||
unsigned char 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,
|
||||
unsigned int uIELength,
|
||||
unsigned char *pbyIEs,
|
||||
void *pRxPacketContext
|
||||
);
|
||||
|
||||
bool
|
||||
BSSbUpdateToBSSList(
|
||||
void *hDeviceContext,
|
||||
__le64 qwTimestamp,
|
||||
unsigned short wBeaconInterval,
|
||||
unsigned short wCapInfo,
|
||||
unsigned char byCurrChannel,
|
||||
bool 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,
|
||||
unsigned int uIELength,
|
||||
unsigned char *pbyIEs,
|
||||
void *pRxPacketContext
|
||||
);
|
||||
|
||||
bool
|
||||
BSSDBbIsSTAInNodeDB(void *hDeviceContext, unsigned char *abyDstAddr,
|
||||
unsigned int *puNodeIndex);
|
||||
|
||||
void
|
||||
BSSvCreateOneNode(void *hDeviceContext, unsigned int *puNodeIndex);
|
||||
|
||||
void
|
||||
BSSvUpdateAPNode(
|
||||
void *hDeviceContext,
|
||||
unsigned short *pwCapInfo,
|
||||
PWLAN_IE_SUPP_RATES pItemRates,
|
||||
PWLAN_IE_SUPP_RATES pExtSuppRates
|
||||
);
|
||||
|
||||
void
|
||||
BSSvSecondCallBack(
|
||||
void *hDeviceContext
|
||||
);
|
||||
|
||||
void
|
||||
BSSvUpdateNodeTxCounter(
|
||||
void *hDeviceContext,
|
||||
unsigned char byTsr0,
|
||||
unsigned char byTsr1,
|
||||
unsigned char *pbyBuffer,
|
||||
unsigned int uFIFOHeaderSize
|
||||
);
|
||||
|
||||
void
|
||||
BSSvRemoveOneNode(
|
||||
void *hDeviceContext,
|
||||
unsigned int uNodeIndex
|
||||
);
|
||||
|
||||
void
|
||||
BSSvAddMulticastNode(
|
||||
void *hDeviceContext
|
||||
);
|
||||
|
||||
void
|
||||
BSSvClearNodeDBTable(
|
||||
void *hDeviceContext,
|
||||
unsigned int uStartIndex
|
||||
);
|
||||
|
||||
void
|
||||
BSSvClearAnyBSSJoinRecord(
|
||||
void *hDeviceContext
|
||||
);
|
||||
|
||||
#endif /*__BSSDB_H__ */
|
||||
|
|
|
@ -488,8 +488,6 @@ VNTWIFIvUpdateNodeTxCounter(
|
|||
|
||||
if ((pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) ||
|
||||
(pMgmt->eCurrMode == WMAC_MODE_ESS_AP)) {
|
||||
if (BSSDBbIsSTAInNodeDB(pMgmt, pbyDestAddress, &uNodeIndex) == false)
|
||||
return;
|
||||
}
|
||||
|
||||
pMgmt->sNodeDBTable[uNodeIndex].uTxAttempts++;
|
||||
|
@ -516,7 +514,6 @@ VNTWIFIvGetTxRate(
|
|||
)
|
||||
{
|
||||
PSMgmtObject pMgmt = (PSMgmtObject)pMgmtHandle;
|
||||
unsigned int uNodeIndex = 0;
|
||||
unsigned short wTxDataRate = RATE_1M;
|
||||
unsigned char byACKRate = RATE_1M;
|
||||
unsigned char byCCKBasicRate = RATE_1M;
|
||||
|
@ -527,19 +524,6 @@ VNTWIFIvGetTxRate(
|
|||
if ((pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) ||
|
||||
(pMgmt->eCurrMode == WMAC_MODE_ESS_AP)) {
|
||||
/* Adhoc Tx rate decided from node DB */
|
||||
if (BSSDBbIsSTAInNodeDB(pMgmt, pbyDestAddress, &uNodeIndex)) {
|
||||
wTxDataRate = (pMgmt->sNodeDBTable[uNodeIndex].wTxDataRate);
|
||||
pSupportRateIEs = (PWLAN_IE_SUPP_RATES) (pMgmt->sNodeDBTable[uNodeIndex].abyCurrSuppRates);
|
||||
pExtSupportRateIEs = (PWLAN_IE_SUPP_RATES) (pMgmt->sNodeDBTable[uNodeIndex].abyCurrExtSuppRates);
|
||||
} else {
|
||||
if (pMgmt->eCurrentPHYMode != PHY_TYPE_11A)
|
||||
wTxDataRate = RATE_2M;
|
||||
else
|
||||
wTxDataRate = RATE_24M;
|
||||
|
||||
pSupportRateIEs = (PWLAN_IE_SUPP_RATES) pMgmt->abyCurrSuppRates;
|
||||
pExtSupportRateIEs = (PWLAN_IE_SUPP_RATES) pMgmt->abyCurrExtSuppRates;
|
||||
}
|
||||
} else { /* Infrastructure: rate decided from AP Node, index = 0 */
|
||||
|
||||
wTxDataRate = (pMgmt->sNodeDBTable[0].wTxDataRate);
|
||||
|
|
Loading…
Reference in New Issue