Skip to content

Commit

Permalink
staging: rtl8192e: Convert typedef TR_SELECT to enum tr_select
Browse files Browse the repository at this point in the history
Remove typedef from enum.
Rename enum.
Rename uses.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
  • Loading branch information
Larry Finger authored and Larry Finger committed Aug 24, 2011
1 parent 379a20f commit 39b2a4a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions drivers/staging/rtl8192e/rtl819x_BAProc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
{
Expand Down Expand Up @@ -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);
Expand Down Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions drivers/staging/rtl8192e/rtl819x_TS.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
6 changes: 3 additions & 3 deletions drivers/staging/rtl8192e/rtl819x_TSProc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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};
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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);
Expand Down
4 changes: 2 additions & 2 deletions drivers/staging/rtl8192e/rtllib.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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);
Expand Down

0 comments on commit 39b2a4a

Please sign in to comment.