Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 235971
b: refs/heads/master
c: 5398741
h: refs/heads/master
i:
  235969: c2e344e
  235967: 10e4edc
v: v3
  • Loading branch information
Mike McCormack authored and Greg Kroah-Hartman committed Feb 18, 2011
1 parent 92bcadf commit 95fcdbd
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 11 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: b07b846c333708ce2b95b5cd2a86f51a74331d02
refs/heads/master: 539874106471819d4b6e52d06e14a0c3b0770a3b
1 change: 0 additions & 1 deletion trunk/drivers/staging/rtl8192e/r8192E.h
Original file line number Diff line number Diff line change
Expand Up @@ -807,7 +807,6 @@ typedef struct r8192_priv
u8 Rf_Mode;
u8 card_8192_version; /* if TCR reports card V B/C this discriminates */
spinlock_t irq_th_lock;
spinlock_t tx_lock;
spinlock_t rf_ps_lock;
struct mutex mutex;
spinlock_t ps_lock;
Expand Down
7 changes: 0 additions & 7 deletions trunk/drivers/staging/rtl8192e/r8192E_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -2116,7 +2116,6 @@ static void rtl8192_init_priv_variable(struct net_device* dev)

static void rtl8192_init_priv_lock(struct r8192_priv* priv)
{
spin_lock_init(&priv->tx_lock);
spin_lock_init(&priv->irq_th_lock);
spin_lock_init(&priv->rf_ps_lock);
spin_lock_init(&priv->ps_lock);
Expand Down Expand Up @@ -3000,12 +2999,10 @@ static void rtl8192_prepare_beacon(unsigned long arg)
{
struct r8192_priv *priv = (struct r8192_priv*) arg;
struct sk_buff *skb;
//unsigned long flags;
cb_desc *tcb_desc;

skb = ieee80211_get_beacon(priv->ieee80211);
tcb_desc = (cb_desc *)(skb->cb + 8);
//spin_lock_irqsave(&priv->tx_lock,flags);
/* prepare misc info for the beacon xmit */
tcb_desc->queue_index = BEACON_QUEUE;
/* IBSS does not support HT yet, use 1M defaultly */
Expand All @@ -3018,7 +3015,6 @@ static void rtl8192_prepare_beacon(unsigned long arg)
if(skb){
rtl8192_tx(priv->ieee80211->dev,skb);
}
//spin_unlock_irqrestore (&priv->tx_lock, flags);
}


Expand Down Expand Up @@ -3747,7 +3743,6 @@ static void rtl819x_watchdog_wqcallback(struct work_struct *work)
struct net_device *dev = priv->ieee80211->dev;
struct ieee80211_device* ieee = priv->ieee80211;
RESET_TYPE ResetType = RESET_TYPE_NORESET;
unsigned long flags;
bool bBusyTraffic = false;
bool bEnterPS = false;

Expand Down Expand Up @@ -3840,14 +3835,12 @@ static void rtl819x_watchdog_wqcallback(struct work_struct *work)
ieee->LinkDetectInfo.NumRecvDataInPeriod=0;

//check if reset the driver
spin_lock_irqsave(&priv->tx_lock,flags);
if (priv->watchdog_check_reset_cnt++ >= 3 && !ieee->is_roaming &&
priv->watchdog_last_time != 1)
{
ResetType = rtl819x_ifcheck_resetornot(dev);
priv->watchdog_check_reset_cnt = 3;
}
spin_unlock_irqrestore(&priv->tx_lock,flags);
if(!priv->bDisableNormalResetCheck && ResetType == RESET_TYPE_NORMAL)
{
priv->ResetProgress = RESET_TYPE_NORMAL;
Expand Down
2 changes: 0 additions & 2 deletions trunk/drivers/staging/rtl8192e/r819xE_cmdpkt.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ RT_STATUS cmpk_message_handle_tx(
PTX_FWINFO_8190PCI pTxFwInfo = NULL;
int i;

//spin_lock_irqsave(&priv->tx_lock,flags);
RT_TRACE(COMP_CMDPKT,"%s(),buffer_len is %d\n",__FUNCTION__,buffer_len);
firmware_init_param(dev);
//Fragmentation might be required
Expand Down Expand Up @@ -113,7 +112,6 @@ RT_STATUS cmpk_message_handle_tx(
}while(frag_offset < buffer_len);

Failed:
//spin_unlock_irqrestore(&priv->tx_lock,flags);
return rt_status;
}

Expand Down

0 comments on commit 95fcdbd

Please sign in to comment.