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:
committed by
Greg Kroah-Hartman
parent
2cb61ea25b
commit
fea84ba0f9
@@ -328,11 +328,6 @@ SetRFPowerState8190(struct net_device *dev, RT_RF_POWER_STATE eRFPowerState)
|
|||||||
bool bResult = true;
|
bool bResult = true;
|
||||||
|
|
||||||
spin_lock(&priv->ps_lock);
|
spin_lock(&priv->ps_lock);
|
||||||
if (priv->SetRFPowerStateInProgress) {
|
|
||||||
bResult = false;
|
|
||||||
goto out;
|
|
||||||
}
|
|
||||||
priv->SetRFPowerStateInProgress = true;
|
|
||||||
|
|
||||||
switch( eRFPowerState )
|
switch( eRFPowerState )
|
||||||
{
|
{
|
||||||
@@ -428,7 +423,6 @@ SetRFPowerState8190(struct net_device *dev, RT_RF_POWER_STATE eRFPowerState)
|
|||||||
}
|
}
|
||||||
|
|
||||||
out:
|
out:
|
||||||
priv->SetRFPowerStateInProgress = false;
|
|
||||||
spin_unlock(&priv->ps_lock);
|
spin_unlock(&priv->ps_lock);
|
||||||
return bResult;
|
return bResult;
|
||||||
}
|
}
|
||||||
|
@@ -1011,7 +1011,6 @@ typedef struct r8192_priv
|
|||||||
bool bHwRadioOff;
|
bool bHwRadioOff;
|
||||||
//by amy for ps
|
//by amy for ps
|
||||||
bool RFChangeInProgress; // RF Chnage in progress, by Bruce, 2007-10-30
|
bool RFChangeInProgress; // RF Chnage in progress, by Bruce, 2007-10-30
|
||||||
bool SetRFPowerStateInProgress;
|
|
||||||
RT_OP_MODE OpMode;
|
RT_OP_MODE OpMode;
|
||||||
//by amy for reset_count
|
//by amy for reset_count
|
||||||
u32 reset_count;
|
u32 reset_count;
|
||||||
|
@@ -1986,7 +1986,6 @@ static void rtl8192_init_priv_variable(struct net_device* dev)
|
|||||||
priv->ieee80211->RfOffReason = 0;
|
priv->ieee80211->RfOffReason = 0;
|
||||||
priv->RFChangeInProgress = false;
|
priv->RFChangeInProgress = false;
|
||||||
priv->bHwRfOffAction = 0;
|
priv->bHwRfOffAction = 0;
|
||||||
priv->SetRFPowerStateInProgress = false;
|
|
||||||
priv->ieee80211->PowerSaveControl.bInactivePs = true;
|
priv->ieee80211->PowerSaveControl.bInactivePs = true;
|
||||||
priv->ieee80211->PowerSaveControl.bIPSModeBackup = false;
|
priv->ieee80211->PowerSaveControl.bIPSModeBackup = false;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user