staging: vt6656: dead code remove wmgr.c

The header will removed later

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Malcolm Priestley 2014-06-25 21:19:45 +01:00 committed by Greg Kroah-Hartman
parent f9d1968c6b
commit d4d89fd171
5 changed files with 0 additions and 4393 deletions

View file

@ -9,7 +9,6 @@ vt6656_stage-y += main_usb.o \
wctl.o \
80211mgr.o \
wcmd.o\
wmgr.o \
bssdb.o \
wpa2.o \
rxtx.o \

View file

@ -432,10 +432,6 @@ int BSSbInsertToBSSList(struct vnt_private *pDevice,
((PWLAN_IE_SSID) pMgmt->abyDesireSSID)->abySSID,
pSSID->len)) {
bAdd_PMKID_Candidate((void *) pDevice,
pBSSList->abyBSSID,
&pBSSList->sRSNCapObj);
if (pDevice->bLinkPass == true &&
pMgmt->eCurrState == WMAC_STATE_ASSOC &&
(KeybGetTransmitKey(&(pDevice->sKey),

View file

@ -147,7 +147,6 @@ void RXvMngWorkItem(struct work_struct *work)
break;
}
pRxPacket = &(pRCB->sMngPacket);
vMgrRxManagePacket(pDevice, &pDevice->vnt_mgmt, pRxPacket);
pRCB->Ref--;
if (pRCB->Ref == 0) {
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"RxvFreeMng %d %d\n",

File diff suppressed because it is too large Load diff

View file

@ -348,48 +348,4 @@ struct vnt_manager {
};
void vMgrObjectInit(struct vnt_private *pDevice);
void vMgrAssocBeginSta(struct vnt_private *pDevice,
struct vnt_manager *, PCMD_STATUS pStatus);
void vMgrReAssocBeginSta(struct vnt_private *pDevice,
struct vnt_manager *, PCMD_STATUS pStatus);
void vMgrDisassocBeginSta(struct vnt_private *pDevice,
struct vnt_manager *, u8 *abyDestAddress, u16 wReason,
PCMD_STATUS pStatus);
void vMgrAuthenBeginSta(struct vnt_private *pDevice,
struct vnt_manager *, PCMD_STATUS pStatus);
void vMgrCreateOwnIBSS(struct vnt_private *pDevice,
PCMD_STATUS pStatus);
void vMgrJoinBSSBegin(struct vnt_private *pDevice,
PCMD_STATUS pStatus);
void vMgrRxManagePacket(struct vnt_private *pDevice,
struct vnt_manager *, struct vnt_rx_mgmt *);
/*
void
vMgrScanBegin(
void *hDeviceContext,
PCMD_STATUS pStatus
);
*/
void vMgrDeAuthenBeginSta(struct vnt_private *pDevice,
struct vnt_manager *, u8 *abyDestAddress, u16 wReason,
PCMD_STATUS pStatus);
int bMgrPrepareBeaconToSend(struct vnt_private *pDevice,
struct vnt_manager *);
int bAdd_PMKID_Candidate(struct vnt_private *pDevice,
u8 *pbyBSSID, PSRSNCapObject psRSNCapObj);
void vFlush_PMKID_Candidate(struct vnt_private *pDevice);
#endif /* __WMGR_H__ */