Skip to content

Commit

Permalink
staging: rtl8192e: Remove dead code associated with _RTL8192_EXT_PATCH_
Browse files Browse the repository at this point in the history
  • Loading branch information
Larry Finger authored and Larry Finger committed Aug 24, 2011
1 parent 8cc638e commit 25d289f
Showing 1 changed file with 0 additions and 61 deletions.
61 changes: 0 additions & 61 deletions drivers/staging/rtl8192e/rtl819x_TSProc.c
Original file line number Diff line number Diff line change
Expand Up @@ -130,54 +130,6 @@ void ResetRxTsEntry(PRX_TS_RECORD pTS)
pTS->RxTimeoutIndicateSeq = 0xffff;
ResetBaEntry(&pTS->RxAdmittedBARecord);
}
#ifdef _RTL8192_EXT_PATCH_
void ResetAdmitTRStream(struct rtllib_device *ieee, u8 *Addr)
{
u8 dir;
bool search_dir[4] = {0, 0, 0, 0};
struct list_head* psearch_list;
PTS_COMMON_INFO pRet = NULL;
PRX_TS_RECORD pRxTS = NULL;
PTX_TS_RECORD pTxTS = NULL;

if (ieee->iw_mode != IW_MODE_MESH)
return;

search_dir[DIR_DOWN] = true;
psearch_list = &ieee->Rx_TS_Admit_List;
for (dir = 0; dir <= DIR_BI_DIR; dir++)
{
if (search_dir[dir] ==false )
continue;
list_for_each_entry(pRet, psearch_list, List){
if ((memcmp(pRet->Addr, Addr, 6) == 0) && (pRet->TSpec.f.TSInfo.field.ucDirection == dir))
{
pRxTS = (PRX_TS_RECORD)pRet;
pRxTS->RxIndicateSeq = 0xffff;
pRxTS->RxTimeoutIndicateSeq = 0xffff;
}

}
}
search_dir[DIR_UP] = true;
psearch_list = &ieee->Tx_TS_Admit_List;
for (dir = 0; dir <= DIR_BI_DIR; dir++)
{
if (search_dir[dir] ==false )
continue;
list_for_each_entry(pRet, psearch_list, List){
if ((memcmp(pRet->Addr, Addr, 6) == 0) && (pRet->TSpec.f.TSInfo.field.ucDirection == dir))
{
pTxTS = (PTX_TS_RECORD)pRet;
pTxTS->TxCurSeq = 0xffff;
}

}
}

return;
}
#endif

void TSInitialize(struct rtllib_device *ieee)
{
Expand Down Expand Up @@ -364,19 +316,6 @@ void MakeTSEntry(
pTsCommonInfo->TClasNum = TCLAS_Num;
}

#ifdef _RTL8192_EXT_PATCH_
void dump_ts_list(struct list_head * ts_list)
{
PTS_COMMON_INFO pRet = NULL;
u8 i=0;
list_for_each_entry(pRet, ts_list, List){
printk("i=%d ADD:"MAC_FMT", TID:%d, dir:%d\n",i,MAC_ARG(pRet->Addr), pRet->TSpec.f.TSInfo.field.ucTSID, pRet->TSpec.f.TSInfo.field.ucDirection);
i++;
}

}
#endif

bool GetTs(
struct rtllib_device* ieee,
PTS_COMMON_INFO *ppTS,
Expand Down

0 comments on commit 25d289f

Please sign in to comment.