Skip to content

Commit

Permalink
staging: rtl8192e: Convert typedef LED_CTL_MODE to enum led_ctl_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 062de0a commit 4fd7ced
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/rtl8192e/r8192E_dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void rtl8192e_update_msr(struct net_device *dev)
{
struct r8192_priv *priv = rtllib_priv(dev);
u8 msr;
LED_CTL_MODE LedAction = LED_CTL_NO_LINK;
enum led_ctl_mode LedAction = LED_CTL_NO_LINK;
msr = read_nic_byte(dev, MSR);
msr &= ~ MSR_LINK_MASK;

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

btMsr &= 0xfc;
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 @@ -621,7 +621,7 @@ enum init_gain_op_type {
IG_Max
};

typedef enum _LED_CTL_MODE{
enum led_ctl_mode {
LED_CTL_POWER_ON = 1,
LED_CTL_LINK = 2,
LED_CTL_NO_LINK = 3,
Expand All @@ -635,7 +635,7 @@ typedef enum _LED_CTL_MODE{
LED_CTL_START_WPS_BOTTON = 11,
LED_CTL_STOP_WPS_FAIL = 12,
LED_CTL_STOP_WPS_FAIL_OVERLAP = 13,
} LED_CTL_MODE;
};

typedef enum _RT_RF_TYPE_DEF
{
Expand Down Expand Up @@ -2525,7 +2525,7 @@ struct rtllib_device {
void (*UpdateInterruptMaskHandler)(struct net_device* dev, u32 AddMSR, u32 RemoveMSR);
u16 (*rtl_11n_user_show_rates)(struct net_device *dev);
void (*ScanOperationBackupHandler)(struct net_device *dev, u8 Operation);
void (*LedControlHandler)(struct net_device * dev, LED_CTL_MODE LedAction);
void (*LedControlHandler)(struct net_device * dev, enum led_ctl_mode LedAction);
void (*SetHwRegHandler)(struct net_device *dev,u8 variable,u8* val);
void (*GetHwRegHandler)(struct net_device *dev,u8 variable,u8* val);

Expand Down

0 comments on commit 4fd7ced

Please sign in to comment.