Commit 3c093c2b authored by Larry Finger's avatar Larry Finger

staging: rtl8192e: Convert typedef Fsync_State to enum fsync_state

Remove typedef from enum.
Rename enum.
Rename uses.
Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
parent 3b45eb83
...@@ -1793,11 +1793,11 @@ struct rx_reorder_entry { ...@@ -1793,11 +1793,11 @@ struct rx_reorder_entry {
u16 SeqNum; u16 SeqNum;
struct rtllib_rxb* prxb; struct rtllib_rxb* prxb;
}; };
typedef enum _Fsync_State{ enum fsync_state {
Default_Fsync, Default_Fsync,
HW_Fsync, HW_Fsync,
SW_Fsync SW_Fsync
} Fsync_State; };
typedef enum _RT_PS_MODE typedef enum _RT_PS_MODE
{ {
...@@ -2377,7 +2377,7 @@ struct rtllib_device { ...@@ -2377,7 +2377,7 @@ struct rtllib_device {
u8 fsync_multiple_timeinterval; u8 fsync_multiple_timeinterval;
u32 fsync_firstdiff_ratethreshold; u32 fsync_firstdiff_ratethreshold;
u32 fsync_seconddiff_ratethreshold; u32 fsync_seconddiff_ratethreshold;
Fsync_State fsync_state; enum fsync_state fsync_state;
bool bis_any_nonbepkts; bool bis_any_nonbepkts;
struct bandwidth_autoswitch bandwidth_auto_switch; struct bandwidth_autoswitch bandwidth_auto_switch;
bool FwRWRF; bool FwRWRF;
......
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