staging: rtl8192e: Remove SetRFPowerStateInProgress
Signed-off-by: Mike McCormack <mikem@ring3k.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
2cb61ea25b
commit
fea84ba0f9
|
@ -328,11 +328,6 @@ SetRFPowerState8190(struct net_device *dev, RT_RF_POWER_STATE eRFPowerState)
|
|||
bool bResult = true;
|
||||
|
||||
spin_lock(&priv->ps_lock);
|
||||
if (priv->SetRFPowerStateInProgress) {
|
||||
bResult = false;
|
||||
goto out;
|
||||
}
|
||||
priv->SetRFPowerStateInProgress = true;
|
||||
|
||||
switch( eRFPowerState )
|
||||
{
|
||||
|
@ -428,7 +423,6 @@ SetRFPowerState8190(struct net_device *dev, RT_RF_POWER_STATE eRFPowerState)
|
|||
}
|
||||
|
||||
out:
|
||||
priv->SetRFPowerStateInProgress = false;
|
||||
spin_unlock(&priv->ps_lock);
|
||||
return bResult;
|
||||
}
|
||||
|
|
|
@ -1011,7 +1011,6 @@ typedef struct r8192_priv
|
|||
bool bHwRadioOff;
|
||||
//by amy for ps
|
||||
bool RFChangeInProgress; // RF Chnage in progress, by Bruce, 2007-10-30
|
||||
bool SetRFPowerStateInProgress;
|
||||
RT_OP_MODE OpMode;
|
||||
//by amy for reset_count
|
||||
u32 reset_count;
|
||||
|
|
|
@ -1986,7 +1986,6 @@ static void rtl8192_init_priv_variable(struct net_device* dev)
|
|||
priv->ieee80211->RfOffReason = 0;
|
||||
priv->RFChangeInProgress = false;
|
||||
priv->bHwRfOffAction = 0;
|
||||
priv->SetRFPowerStateInProgress = false;
|
||||
priv->ieee80211->PowerSaveControl.bInactivePs = true;
|
||||
priv->ieee80211->PowerSaveControl.bIPSModeBackup = false;
|
||||
|
||||
|
|
Loading…
Reference in New Issue