Skip to content

Commit

Permalink
staging: rtl8192e: Convert typedef rtl819x_loopback_e to enum rtl819x…
Browse files Browse the repository at this point in the history
…_loopback

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 d3b2c17 commit 70f9f79
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/rtl8192e/r8190P_def.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@
#define RX_CMD_QUEUE 1


typedef enum _rtl819x_loopback_e{
enum rtl819x_loopback {
RTL819X_NO_LOOPBACK = 0,
RTL819X_MAC_LOOPBACK = 1,
RTL819X_DMA_LOOPBACK = 2,
RTL819X_CCK_LOOPBACK = 3,
} rtl819x_loopback_e;
};


#define RESET_DELAY_8185 20
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/rtl8192e/rtl_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ struct r8192_priv {
ACM_METHOD AcmMethod;

struct rt_firmware *pFirmware;
rtl819x_loopback_e LoopbackMode;
enum rtl819x_loopback LoopbackMode;
firmware_source_e firmware_source;

struct timer_list watch_dog_timer;
Expand Down

0 comments on commit 70f9f79

Please sign in to comment.