Commit e93e0f6a authored by Larry Finger's avatar Larry Finger

staging: rtl8192e: Convert typedef RT_OP_MODE to enum rt_op_mode

Remove typedef from enum.
Rename enum.
Rename uses.
Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
parent bb5e4822
...@@ -109,7 +109,7 @@ rtl8192e_SetHwReg(struct net_device *dev,u8 variable,u8* val) ...@@ -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);
......
...@@ -403,12 +403,12 @@ enum hw_variables { ...@@ -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 { ...@@ -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 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment