Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 236277
b: refs/heads/master
c: 09f1437
h: refs/heads/master
i:
  236275: 6f46fad
v: v3
  • Loading branch information
Mike McCormack authored and Greg Kroah-Hartman committed Mar 7, 2011
1 parent 73e2a05 commit f561a39
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 65 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: 0903602e2c2f796d63ef7b73e2888c6d13899140
refs/heads/master: 09f143791cc88bdbff0f1f8f2a6a747da896601b
41 changes: 2 additions & 39 deletions trunk/drivers/staging/rtl8192e/r8190_rtl8256.c
Original file line number Diff line number Diff line change
Expand Up @@ -638,45 +638,10 @@ MgntActSet_RF_State(
bool bActionAllowed = false;
bool bConnectBySSID = false;
RT_RF_POWER_STATE rtState;
u16 RFWaitCounter = 0;
RT_TRACE(COMP_POWER, "===>MgntActSet_RF_State(): StateToSet(%d)\n",StateToSet);

//1//
//1//<1>Prevent the race condition of RF state change.
//1//
// Only one thread can change the RF state at one time, and others should wait to be executed. By Bruce, 2007-11-28.

while(true)
{
spin_lock(&priv->rf_ps_lock);
if(priv->RFChangeInProgress)
{
spin_unlock(&priv->rf_ps_lock);
RT_TRACE(COMP_POWER, "MgntActSet_RF_State(): RF Change in progress! Wait to set..StateToSet(%d).\n", StateToSet);

// Set RF after the previous action is done.
while(priv->RFChangeInProgress)
{
RFWaitCounter ++;
RT_TRACE(COMP_POWER, "MgntActSet_RF_State(): Wait 1 ms (%d times)...\n", RFWaitCounter);
udelay(1000); // 1 ms
RT_TRACE(COMP_POWER, "===>MgntActSet_RF_State(): StateToSet(%d)\n",StateToSet);

// Wait too long, return FALSE to avoid to be stuck here.
if(RFWaitCounter > 100)
{
RT_TRACE(COMP_ERR, "MgntActSet_RF_State(): Wait too logn to set RF\n");
// TODO: Reset RF state?
return false;
}
}
}
else
{
priv->RFChangeInProgress = true;
spin_unlock(&priv->rf_ps_lock);
break;
}
}
spin_lock(&priv->rf_ps_lock);

rtState = priv->ieee80211->eRFPowerState;

Expand Down Expand Up @@ -731,8 +696,6 @@ MgntActSet_RF_State(
}

// Release RF spinlock
spin_lock(&priv->rf_ps_lock);
priv->RFChangeInProgress = false;
spin_unlock(&priv->rf_ps_lock);

RT_TRACE(COMP_POWER, "<===MgntActSet_RF_State()\n");
Expand Down
1 change: 0 additions & 1 deletion trunk/drivers/staging/rtl8192e/r8192E.h
Original file line number Diff line number Diff line change
Expand Up @@ -1010,7 +1010,6 @@ typedef struct r8192_priv
//by amy for gpio
bool bHwRadioOff;
//by amy for ps
bool RFChangeInProgress; // RF Chnage in progress, by Bruce, 2007-10-30
RT_OP_MODE OpMode;
//by amy for reset_count
u32 reset_count;
Expand Down
24 changes: 0 additions & 24 deletions trunk/drivers/staging/rtl8192e/r8192E_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1849,17 +1849,6 @@ static short rtl8192_is_tx_queue_empty(struct net_device *dev)

static void rtl8192_hw_sleep_down(struct net_device *dev)
{
struct r8192_priv *priv = ieee80211_priv(dev);

spin_lock(&priv->rf_ps_lock);
if (priv->RFChangeInProgress) {
spin_unlock(&priv->rf_ps_lock);
RT_TRACE(COMP_RF, "rtl8192_hw_sleep_down(): RF Change in progress!\n");
printk("rtl8192_hw_sleep_down(): RF Change in progress!\n");
return;
}
spin_unlock(&priv->rf_ps_lock);

MgntActSet_RF_State(dev, eRfSleep, RF_CHANGE_BY_PS);
}

Expand All @@ -1874,18 +1863,6 @@ static void rtl8192_hw_sleep_wq (struct work_struct *work)

static void rtl8192_hw_wakeup(struct net_device* dev)
{
struct r8192_priv *priv = ieee80211_priv(dev);

spin_lock(&priv->rf_ps_lock);
if (priv->RFChangeInProgress) {
spin_unlock(&priv->rf_ps_lock);
RT_TRACE(COMP_RF, "rtl8192_hw_wakeup(): RF Change in progress!\n");
printk("rtl8192_hw_wakeup(): RF Change in progress! schedule wake up task again\n");
queue_delayed_work(priv->ieee80211->wq,&priv->ieee80211->hw_wakeup_wq,MSECS(10));//PowerSave is not supported if kernel version is below 2.6.20
return;
}
spin_unlock(&priv->rf_ps_lock);

MgntActSet_RF_State(dev, eRfOn, RF_CHANGE_BY_PS);
}

Expand Down Expand Up @@ -1984,7 +1961,6 @@ static void rtl8192_init_priv_variable(struct net_device* dev)
priv->force_reset = false;
//added by amy for power save
priv->ieee80211->RfOffReason = 0;
priv->RFChangeInProgress = false;
priv->bHwRfOffAction = 0;
priv->ieee80211->PowerSaveControl.bInactivePs = true;
priv->ieee80211->PowerSaveControl.bIPSModeBackup = false;
Expand Down

0 comments on commit f561a39

Please sign in to comment.