Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 235689
b: refs/heads/master
c: 73dbd9f
h: refs/heads/master
i:
  235687: 2a43136
v: v3
  • Loading branch information
Mike McCormack authored and Greg Kroah-Hartman committed Jan 24, 2011
1 parent 941ce6c commit c93b326
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 82 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ea9dc54ed9efc32f0cf2c6eb18898cfd8a1bb96e
refs/heads/master: 73dbd9f3a4d3c47f514fda5997322f2cbb8219e3
24 changes: 0 additions & 24 deletions trunk/drivers/staging/rtl8192e/r8192E.h
Original file line number Diff line number Diff line change
Expand Up @@ -1031,30 +1031,6 @@ typedef struct r8192_priv
int txbeaconcount;
struct buffer *txbeaconbufs;
struct buffer *txbeaconbufstail;
ptx_ring txmapring;
ptx_ring txbkpring;
ptx_ring txbepring;
ptx_ring txvipring;
ptx_ring txvopring;
ptx_ring txcmdring;
ptx_ring txmapringtail;
ptx_ring txbkpringtail;
ptx_ring txbepringtail;
ptx_ring txvipringtail;
ptx_ring txvopringtail;
ptx_ring txcmdringtail;
ptx_ring txmapringhead;
ptx_ring txbkpringhead;
ptx_ring txbepringhead;
ptx_ring txvipringhead;
ptx_ring txvopringhead;
ptx_ring txcmdringhead;
dma_addr_t txmapringdma;
dma_addr_t txbkpringdma;
dma_addr_t txbepringdma;
dma_addr_t txvipringdma;
dma_addr_t txvopringdma;
dma_addr_t txcmdringdma;
// u8 chtxpwr[15]; //channels from 1 to 14, 0 not used
// u8 chtxpwr_ofdm[15]; //channels from 1 to 14, 0 not used
// u8 cck_txpwr_base;
Expand Down
57 changes: 0 additions & 57 deletions trunk/drivers/staging/rtl8192e/r8192E_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -3555,8 +3555,6 @@ static RESET_TYPE
TxCheckStuck(struct net_device *dev)
{
struct r8192_priv *priv = ieee80211_priv(dev);
u8 QueueID;
ptx_ring head=NULL,tail=NULL,txring = NULL;
u8 ResetThreshold = NIC_SEND_HANG_THRESHOLD_POWERSAVE;
bool bCheckFwTxCnt = false;

Expand All @@ -3577,61 +3575,6 @@ TxCheckStuck(struct net_device *dev)
break;
}

//
// Check whether specific tcb has been queued for a specific time
//
for(QueueID = 0; QueueID < MAX_TX_QUEUE; QueueID++)
{


if(QueueID == TXCMD_QUEUE)
continue;

switch(QueueID) {
case MGNT_QUEUE:
tail=priv->txmapringtail;
head=priv->txmapringhead;
break;

case BK_QUEUE:
tail=priv->txbkpringtail;
head=priv->txbkpringhead;
break;

case BE_QUEUE:
tail=priv->txbepringtail;
head=priv->txbepringhead;
break;

case VI_QUEUE:
tail=priv->txvipringtail;
head=priv->txvipringhead;
break;

case VO_QUEUE:
tail=priv->txvopringtail;
head=priv->txvopringhead;
break;

default:
tail=head=NULL;
break;
}

if(tail == head)
continue;
else
{
txring = head;
if(txring == NULL)
{
RT_TRACE(COMP_ERR,"%s():txring is NULL , BUG!\n",__FUNCTION__);
continue;
}
txring->nStuckCount++;
bCheckFwTxCnt = TRUE;
}
}
#if 1
if(bCheckFwTxCnt)
{
Expand Down

0 comments on commit c93b326

Please sign in to comment.