Commit 39b2a4ae authored by Larry Finger's avatar Larry Finger

staging: rtl8192e: Convert typedef TR_SELECT to enum tr_select

Remove typedef from enum.
Rename enum.
Rename uses.
Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
parent 379a20fb
......@@ -140,7 +140,7 @@ static struct sk_buff* rtllib_DELBA(
struct rtllib_device* ieee,
u8* dst,
struct ba_record *pBA,
TR_SELECT TxRxSelect,
enum tr_select TxRxSelect,
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;
skb = rtllib_DELBA(ieee, dst, pBA, TxRxSelect, ReasonCode);
......@@ -527,7 +527,7 @@ TsInitAddBA(
}
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)
......
......@@ -26,10 +26,10 @@
#define TOTAL_TS_NUM 16
#define TCLAS_NUM 4
typedef enum _TR_SELECT {
enum tr_select {
TX_DIR = 0,
RX_DIR = 1,
} TR_SELECT, *PTR_SELECT;
};
struct ts_common_info {
struct list_head List;
......
......@@ -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;
bool search_dir[4] = {0, 0, 0, 0};
......@@ -321,7 +321,7 @@ bool GetTs(
struct ts_common_info **ppTS,
u8* Addr,
u8 TID,
TR_SELECT TxRxSelect,
enum tr_select TxRxSelect,
bool bAddNewTs)
{
u8 UP = 0;
......@@ -435,7 +435,7 @@ bool GetTs(
void RemoveTsEntry(
struct rtllib_device* ieee,
struct ts_common_info *pTs,
TR_SELECT TxRxSelect
enum tr_select TxRxSelect
)
{
del_timer_sync(&pTs->SetupTimer);
......
......@@ -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_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 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 TxBaInactTimeout(unsigned long data);
extern void RxBaInactTimeout(unsigned long data);
......@@ -2917,7 +2917,7 @@ extern bool GetTs(
struct ts_common_info **ppTS,
u8* Addr,
u8 TID,
TR_SELECT TxRxSelect,
enum tr_select TxRxSelect,
bool bAddNewTs
);
extern void TSInitialize(struct rtllib_device *ieee);
......
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