dect
/
linux-2.6
Archived
13
0
Fork 0

staging: rtl8192e: Convert typedef RESET_TYPE to enum reset_type

Remove typedef from enum.
Rename enum.
Rename uses.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2011-07-19 19:49:51 -05:00
parent ed8eac2f92
commit ab0d7ccaf7
2 changed files with 9 additions and 9 deletions

View File

@ -1416,7 +1416,7 @@ short rtl8192_is_tx_queue_empty(struct net_device *dev)
return 1;
}
RESET_TYPE
enum reset_type
rtl819x_TxCheckStuck(struct net_device *dev)
{
struct r8192_priv *priv = rtllib_priv(dev);
@ -1476,7 +1476,7 @@ rtl819x_TxCheckStuck(struct net_device *dev)
return RESET_TYPE_NORESET;
}
RESET_TYPE rtl819x_RxCheckStuck(struct net_device *dev)
enum reset_type rtl819x_RxCheckStuck(struct net_device *dev)
{
struct r8192_priv *priv = rtllib_priv(dev);
@ -1489,12 +1489,12 @@ RESET_TYPE rtl819x_RxCheckStuck(struct net_device *dev)
return RESET_TYPE_NORESET;
}
RESET_TYPE
enum reset_type
rtl819x_ifcheck_resetornot(struct net_device *dev)
{
struct r8192_priv *priv = rtllib_priv(dev);
RESET_TYPE TxResetType = RESET_TYPE_NORESET;
RESET_TYPE RxResetType = RESET_TYPE_NORESET;
enum reset_type TxResetType = RESET_TYPE_NORESET;
enum reset_type RxResetType = RESET_TYPE_NORESET;
RT_RF_POWER_STATE rfState;
rfState = priv->rtllib->eRFPowerState;
@ -1678,7 +1678,7 @@ void rtl819x_watchdog_wqcallback(void *data)
struct r8192_priv *priv = container_of_dwork_rsl(data, struct r8192_priv, watch_dog_wq);
struct net_device *dev = priv->rtllib->dev;
struct rtllib_device* ieee = priv->rtllib;
RESET_TYPE ResetType = RESET_TYPE_NORESET;
enum reset_type ResetType = RESET_TYPE_NORESET;
static u8 check_reset_cnt = 0;
unsigned long flags;
struct rt_pwr_save_ctrl *pPSC = (struct rt_pwr_save_ctrl *)(&(priv->rtllib->PowerSaveControl));

View File

@ -322,11 +322,11 @@ enum rt_customer_id {
RT_CID_819x_WNC_COREGA = 31,
};
typedef enum _RESET_TYPE {
enum reset_type {
RESET_TYPE_NORESET = 0x00,
RESET_TYPE_NORMAL = 0x01,
RESET_TYPE_SILENT = 0x02
} RESET_TYPE;
};
typedef enum _IC_INFERIORITY_8192S{
IC_INFERIORITY_A = 0,
@ -978,7 +978,7 @@ struct r8192_priv {
u32 ccktxpower_adjustcnt_not_ch14;
u32 ccktxpower_adjustcnt_ch14;
RESET_TYPE ResetProgress;
enum reset_type ResetProgress;
bool bForcedSilentReset;
bool bDisableNormalResetCheck;
u16 TxCounter;