staging: rtl8192e: Convert typedef RT_RF_POWER_STATE to enum rt_rf_power_state

Remove typedef from enum.
Rename enum.
Rename uses.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2011-07-19 21:00:33 -05:00
parent f6ce577e38
commit de7c885a24
10 changed files with 20 additions and 21 deletions

View file

@ -108,7 +108,7 @@ cmpk_count_txstatistic(
{
struct r8192_priv *priv = rtllib_priv(dev);
#ifdef ENABLE_PS
RT_RF_POWER_STATE rtState;
enum rt_rf_power_state rtState;
pAdapter->HalFunc.GetHwRegHandler(pAdapter, HW_VAR_RF_STATE, (pu1Byte)(&rtState));
@ -272,7 +272,7 @@ static void cmpk_count_tx_status( struct net_device *dev,
#ifdef ENABLE_PS
RT_RF_POWER_STATE rtstate;
enum rt_rf_power_state rtstate;
pAdapter->HalFunc.GetHwRegHandler(pAdapter, HW_VAR_RF_STATE, (pu1Byte)(&rtState));

View file

@ -1377,7 +1377,7 @@ PHY_SetRtl8192eRfOff(struct net_device* dev )
bool
SetRFPowerState8190(
struct net_device* dev,
RT_RF_POWER_STATE eRFPowerState
enum rt_rf_power_state eRFPowerState
)
{
struct r8192_priv *priv = rtllib_priv(dev);
@ -1547,7 +1547,7 @@ SetRFPowerState8190(
bool
SetRFPowerState(
struct net_device* dev,
RT_RF_POWER_STATE eRFPowerState
enum rt_rf_power_state eRFPowerState
)
{
struct r8192_priv *priv = rtllib_priv(dev);

View file

@ -123,7 +123,7 @@ extern void PHY_SetRtl8192eRfOff(struct net_device *dev);
bool
SetRFPowerState(
struct net_device* dev,
RT_RF_POWER_STATE eRFPowerState
enum rt_rf_power_state eRFPowerState
);
#define PHY_SetRFPowerState SetRFPowerState

View file

@ -119,7 +119,7 @@ void setKey(struct net_device *dev,
u16 usConfig = 0;
u8 i;
struct r8192_priv *priv = (struct r8192_priv *)rtllib_priv(dev);
RT_RF_POWER_STATE rtState;
enum rt_rf_power_state rtState;
rtState = priv->rtllib->eRFPowerState;
if (priv->rtllib->PowerSaveControl.bInactivePs){
if (rtState == eRfOff){

View file

@ -349,7 +349,7 @@ void write_nic_word(struct net_device *dev, int x,u16 y)
bool
MgntActSet_RF_State(
struct net_device* dev,
RT_RF_POWER_STATE StateToSet,
enum rt_rf_power_state StateToSet,
RT_RF_CHANGE_SOURCE ChangeSource,
bool ProtectOrNot
)
@ -358,7 +358,7 @@ MgntActSet_RF_State(
struct rtllib_device * ieee = priv->rtllib;
bool bActionAllowed = false;
bool bConnectBySSID = false;
RT_RF_POWER_STATE rtState;
enum rt_rf_power_state rtState;
u16 RFWaitCounter = 0;
unsigned long flag;
RT_TRACE((COMP_PS | COMP_RF), "===>MgntActSet_RF_State(): StateToSet(%d)\n",StateToSet);
@ -1495,7 +1495,7 @@ rtl819x_ifcheck_resetornot(struct net_device *dev)
struct r8192_priv *priv = rtllib_priv(dev);
enum reset_type TxResetType = RESET_TYPE_NORESET;
enum reset_type RxResetType = RESET_TYPE_NORESET;
RT_RF_POWER_STATE rfState;
enum rt_rf_power_state rfState;
rfState = priv->rtllib->eRFPowerState;

View file

@ -1089,7 +1089,7 @@ bool NicIFDisableNIC(struct net_device* dev);
bool
MgntActSet_RF_State(
struct net_device* dev,
RT_RF_POWER_STATE StateToSet,
enum rt_rf_power_state StateToSet,
RT_RF_CHANGE_SOURCE ChangeSource,
bool ProtectOrNot
);

View file

@ -2671,7 +2671,7 @@ extern void dm_CheckRfCtrlGPIO(void *data)
struct r8192_priv *priv = container_of_dwork_rsl(data, struct r8192_priv,gpio_change_rf_wq);
struct net_device *dev = priv->rtllib->dev;
u8 tmp1byte;
RT_RF_POWER_STATE eRfPowerStateToSet;
enum rt_rf_power_state eRfPowerStateToSet;
bool bActuallySet = false;
char *argv[3];

View file

@ -134,7 +134,7 @@ IPSEnter(struct net_device *dev)
{
struct r8192_priv *priv = rtllib_priv(dev);
struct rt_pwr_save_ctrl *pPSC = (struct rt_pwr_save_ctrl *)(&(priv->rtllib->PowerSaveControl));
RT_RF_POWER_STATE rtState;
enum rt_rf_power_state rtState;
if (pPSC->bInactivePs)
{
@ -157,7 +157,7 @@ IPSLeave(struct net_device *dev)
{
struct r8192_priv *priv = rtllib_priv(dev);
struct rt_pwr_save_ctrl *pPSC = (struct rt_pwr_save_ctrl *)(&(priv->rtllib->PowerSaveControl));
RT_RF_POWER_STATE rtState;
enum rt_rf_power_state rtState;
if (pPSC->bInactivePs)
{
@ -184,7 +184,7 @@ void IPSLeave_wq(void *data)
void rtllib_ips_leave_wq(struct net_device *dev)
{
struct r8192_priv *priv = (struct r8192_priv *)rtllib_priv(dev);
RT_RF_POWER_STATE rtState;
enum rt_rf_power_state rtState;
rtState = priv->rtllib->eRFPowerState;
if (priv->rtllib->PowerSaveControl.bInactivePs){

View file

@ -316,7 +316,7 @@ static int r8192_wx_set_mode(struct net_device *dev, struct iw_request_info *a,
struct r8192_priv *priv = rtllib_priv(dev);
struct rtllib_device* ieee = netdev_priv_rsl(dev);
RT_RF_POWER_STATE rtState;
enum rt_rf_power_state rtState;
int ret;
if (priv->bHwRadioOff == true)
@ -447,7 +447,7 @@ static int r8192_wx_set_scan(struct net_device *dev, struct iw_request_info *a,
{
struct r8192_priv *priv = rtllib_priv(dev);
struct rtllib_device* ieee = priv->rtllib;
RT_RF_POWER_STATE rtState;
enum rt_rf_power_state rtState;
int ret;
if (!(ieee->softmac_features & IEEE_SOFTMAC_SCAN)){

View file

@ -1824,12 +1824,11 @@ struct ibss_parms {
};
#define MAX_NUM_RATES 264
typedef enum _RT_RF_POWER_STATE
{
enum rt_rf_power_state {
eRfOn,
eRfSleep,
eRfOff
} RT_RF_POWER_STATE;
};
#define MAX_SUPPORT_WOL_PATTERN_NUM 8
@ -1859,7 +1858,7 @@ struct rt_pwr_save_ctrl {
bool bIPSModeBackup;
bool bHaltAdapterClkRQ;
bool bSwRfProcessing;
RT_RF_POWER_STATE eInactivePowerState;
enum rt_rf_power_state eInactivePowerState;
struct work_struct InactivePsWorkItem;
struct timer_list InactivePsTimer;
@ -2125,7 +2124,7 @@ struct rtllib_device {
bool FirstIe_InScan;
bool be_scan_inprogress;
bool beinretry;
RT_RF_POWER_STATE eRFPowerState;
enum rt_rf_power_state eRFPowerState;
RT_RF_CHANGE_SOURCE RfOffReason;
bool is_set_key;
bool wx_set_enc;