staging: rtl8192e: Convert typedef RT_OP_MODE to enum rt_op_mode

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 20:24:49 -05:00
parent bb5e482246
commit e93e0f6aab
2 changed files with 4 additions and 4 deletions

View File

@@ -109,7 +109,7 @@ rtl8192e_SetHwReg(struct net_device *dev,u8 variable,u8* val)
case HW_VAR_MEDIA_STATUS: case HW_VAR_MEDIA_STATUS:
{ {
RT_OP_MODE OpMode = *((RT_OP_MODE *)(val)); enum rt_op_mode OpMode = *((enum rt_op_mode *)(val));
LED_CTL_MODE LedAction = LED_CTL_NO_LINK; LED_CTL_MODE LedAction = LED_CTL_NO_LINK;
u8 btMsr = read_nic_byte(dev, MSR); u8 btMsr = read_nic_byte(dev, MSR);

View File

@@ -403,12 +403,12 @@ enum hw_variables {
HW_VAR_RF_TIMING, HW_VAR_RF_TIMING,
}; };
typedef enum _RT_OP_MODE{ enum rt_op_mode {
RT_OP_MODE_AP, RT_OP_MODE_AP,
RT_OP_MODE_INFRASTRUCTURE, RT_OP_MODE_INFRASTRUCTURE,
RT_OP_MODE_IBSS, RT_OP_MODE_IBSS,
RT_OP_MODE_NO_LINK, RT_OP_MODE_NO_LINK,
} RT_OP_MODE, *PRT_OP_MODE; };
#define aSifsTime (((priv->rtllib->current_network.mode == IEEE_A)||(priv->rtllib->current_network.mode == IEEE_N_24G)||(priv->rtllib->current_network.mode == IEEE_N_5G))? 16 : 10) #define aSifsTime (((priv->rtllib->current_network.mode == IEEE_A)||(priv->rtllib->current_network.mode == IEEE_N_24G)||(priv->rtllib->current_network.mode == IEEE_N_5G))? 16 : 10)
@@ -2099,7 +2099,7 @@ struct rtllib_device {
u8 hwscan_sem_up; u8 hwscan_sem_up;
u8 CntAfterLink; u8 CntAfterLink;
RT_OP_MODE OpMode; enum rt_op_mode OpMode;
u8 VersionID; u8 VersionID;
/* The last AssocReq/Resp IEs */ /* The last AssocReq/Resp IEs */