Skip to content

Commit

Permalink
staging: rtl8192e: Convert typedef RT_OP_MODE to enum rt_op_mode
Browse files Browse the repository at this point in the history
Remove typedef from enum.
Rename enum.
Rename uses.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
  • Loading branch information
Larry Finger authored and Larry Finger committed Aug 24, 2011
1 parent bb5e482 commit e93e0f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion drivers/staging/rtl8192e/r8192E_dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ rtl8192e_SetHwReg(struct net_device *dev,u8 variable,u8* val)

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;
u8 btMsr = read_nic_byte(dev, MSR);

Expand Down
6 changes: 3 additions & 3 deletions drivers/staging/rtl8192e/rtllib.h
Original file line number Diff line number Diff line change
Expand Up @@ -403,12 +403,12 @@ enum hw_variables {
HW_VAR_RF_TIMING,
};

typedef enum _RT_OP_MODE{
enum rt_op_mode {
RT_OP_MODE_AP,
RT_OP_MODE_INFRASTRUCTURE,
RT_OP_MODE_IBSS,
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)
Expand Down Expand Up @@ -2099,7 +2099,7 @@ struct rtllib_device {
u8 hwscan_sem_up;
u8 CntAfterLink;

RT_OP_MODE OpMode;
enum rt_op_mode OpMode;

u8 VersionID;
/* The last AssocReq/Resp IEs */
Expand Down

0 comments on commit e93e0f6

Please sign in to comment.