diff options
author | Larry Finger <Larry.Finger@lwfinger.net> | 2011-07-19 20:54:40 -0500 |
---|---|---|
committer | Larry Finger <Larry.Finger@lwfinger.net> | 2011-08-24 10:53:00 -0500 |
commit | 3c093c2ba168ec4a4bfd638c4c35cf748ea329a9 (patch) | |
tree | 366a8430136bf02c9f92a0c871b98091b1f5c2c5 | |
parent | 3b45eb8309ab7e31c31ca046e36033ff9b90a336 (diff) | |
download | linux-3c093c2ba168ec4a4bfd638c4c35cf748ea329a9.tar.gz linux-3c093c2ba168ec4a4bfd638c4c35cf748ea329a9.tar.bz2 linux-3c093c2ba168ec4a4bfd638c4c35cf748ea329a9.zip |
staging: rtl8192e: Convert typedef Fsync_State to enum fsync_state
Remove typedef from enum.
Rename enum.
Rename uses.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
-rw-r--r-- | drivers/staging/rtl8192e/rtllib.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/rtl8192e/rtllib.h b/drivers/staging/rtl8192e/rtllib.h index 00d6862c309c..d53293782fbc 100644 --- a/drivers/staging/rtl8192e/rtllib.h +++ b/drivers/staging/rtl8192e/rtllib.h @@ -1793,11 +1793,11 @@ struct rx_reorder_entry { u16 SeqNum; struct rtllib_rxb* prxb; }; -typedef enum _Fsync_State{ +enum fsync_state { Default_Fsync, HW_Fsync, SW_Fsync -} Fsync_State; +}; typedef enum _RT_PS_MODE { @@ -2377,7 +2377,7 @@ struct rtllib_device { u8 fsync_multiple_timeinterval; u32 fsync_firstdiff_ratethreshold; u32 fsync_seconddiff_ratethreshold; - Fsync_State fsync_state; + enum fsync_state fsync_state; bool bis_any_nonbepkts; struct bandwidth_autoswitch bandwidth_auto_switch; bool FwRWRF; |