staging: rtl8192e: Convert typedef TR_SELECT to enum tr_select

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:31:37 -05:00
parent 379a20fb29
commit 39b2a4aed0
4 changed files with 10 additions and 10 deletions

View File

@@ -140,7 +140,7 @@ static struct sk_buff* rtllib_DELBA(
struct rtllib_device* ieee, struct rtllib_device* ieee,
u8* dst, u8* dst,
struct ba_record *pBA, struct ba_record *pBA,
TR_SELECT TxRxSelect, enum tr_select TxRxSelect,
u16 ReasonCode u16 ReasonCode
) )
{ {
@@ -220,7 +220,7 @@ void rtllib_send_ADDBARsp(struct rtllib_device* ieee, u8* dst, struct ba_record
} }
void rtllib_send_DELBA(struct rtllib_device* ieee, u8* dst, struct ba_record *pBA, TR_SELECT TxRxSelect, u16 ReasonCode) void rtllib_send_DELBA(struct rtllib_device* ieee, u8* dst, struct ba_record *pBA, enum tr_select TxRxSelect, u16 ReasonCode)
{ {
struct sk_buff *skb = NULL; struct sk_buff *skb = NULL;
skb = rtllib_DELBA(ieee, dst, pBA, TxRxSelect, ReasonCode); skb = rtllib_DELBA(ieee, dst, pBA, TxRxSelect, ReasonCode);
@@ -527,7 +527,7 @@ TsInitAddBA(
} }
void void
TsInitDelBA( struct rtllib_device* ieee, struct ts_common_info *pTsCommonInfo, TR_SELECT TxRxSelect) TsInitDelBA( struct rtllib_device* ieee, struct ts_common_info *pTsCommonInfo, enum tr_select TxRxSelect)
{ {
if (TxRxSelect == TX_DIR) if (TxRxSelect == TX_DIR)

View File

@@ -26,10 +26,10 @@
#define TOTAL_TS_NUM 16 #define TOTAL_TS_NUM 16
#define TCLAS_NUM 4 #define TCLAS_NUM 4
typedef enum _TR_SELECT { enum tr_select {
TX_DIR = 0, TX_DIR = 0,
RX_DIR = 1, RX_DIR = 1,
} TR_SELECT, *PTR_SELECT; };
struct ts_common_info { struct ts_common_info {
struct list_head List; struct list_head List;

View File

@@ -219,7 +219,7 @@ void AdmitTS(struct rtllib_device *ieee, struct ts_common_info *pTsCommonInfo, u
} }
struct ts_common_info *SearchAdmitTRStream(struct rtllib_device *ieee, u8* Addr, u8 TID, TR_SELECT TxRxSelect) struct ts_common_info *SearchAdmitTRStream(struct rtllib_device *ieee, u8* Addr, u8 TID, enum tr_select TxRxSelect)
{ {
u8 dir; u8 dir;
bool search_dir[4] = {0, 0, 0, 0}; bool search_dir[4] = {0, 0, 0, 0};
@@ -321,7 +321,7 @@ bool GetTs(
struct ts_common_info **ppTS, struct ts_common_info **ppTS,
u8* Addr, u8* Addr,
u8 TID, u8 TID,
TR_SELECT TxRxSelect, enum tr_select TxRxSelect,
bool bAddNewTs) bool bAddNewTs)
{ {
u8 UP = 0; u8 UP = 0;
@@ -435,7 +435,7 @@ bool GetTs(
void RemoveTsEntry( void RemoveTsEntry(
struct rtllib_device* ieee, struct rtllib_device* ieee,
struct ts_common_info *pTs, struct ts_common_info *pTs,
TR_SELECT TxRxSelect enum tr_select TxRxSelect
) )
{ {
del_timer_sync(&pTs->SetupTimer); del_timer_sync(&pTs->SetupTimer);

View File

@@ -2907,7 +2907,7 @@ extern int rtllib_rx_ADDBAReq( struct rtllib_device* ieee, struct sk_buff *skb);
extern int rtllib_rx_ADDBARsp( struct rtllib_device* ieee, struct sk_buff *skb); extern int rtllib_rx_ADDBARsp( struct rtllib_device* ieee, struct sk_buff *skb);
extern int rtllib_rx_DELBA(struct rtllib_device* ieee,struct sk_buff *skb); extern int rtllib_rx_DELBA(struct rtllib_device* ieee,struct sk_buff *skb);
extern void TsInitAddBA( struct rtllib_device* ieee, struct tx_ts_record *pTS, u8 Policy, u8 bOverwritePending); extern void TsInitAddBA( struct rtllib_device* ieee, struct tx_ts_record *pTS, u8 Policy, u8 bOverwritePending);
extern void TsInitDelBA( struct rtllib_device* ieee, struct ts_common_info *pTsCommonInfo, TR_SELECT TxRxSelect); extern void TsInitDelBA( struct rtllib_device* ieee, struct ts_common_info *pTsCommonInfo, enum tr_select TxRxSelect);
extern void BaSetupTimeOut(unsigned long data); extern void BaSetupTimeOut(unsigned long data);
extern void TxBaInactTimeout(unsigned long data); extern void TxBaInactTimeout(unsigned long data);
extern void RxBaInactTimeout(unsigned long data); extern void RxBaInactTimeout(unsigned long data);
@@ -2917,7 +2917,7 @@ extern bool GetTs(
struct ts_common_info **ppTS, struct ts_common_info **ppTS,
u8* Addr, u8* Addr,
u8 TID, u8 TID,
TR_SELECT TxRxSelect, enum tr_select TxRxSelect,
bool bAddNewTs bool bAddNewTs
); );
extern void TSInitialize(struct rtllib_device *ieee); extern void TSInitialize(struct rtllib_device *ieee);