summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8192e/rtl819x_TS.h
diff options
context:
space:
mode:
authorLarry Finger <Larry.Finger@lwfinger.net>2011-07-18 21:03:22 -0500
committerLarry Finger <Larry.Finger@lwfinger.net>2011-08-24 00:56:21 -0500
commit8cf33316817d8349fa3125584a0f4767b3e4b72d (patch)
treea61d7573c154dbda1563b15984a5e92301c5c0d5 /drivers/staging/rtl8192e/rtl819x_TS.h
parente92b71d571dfc08ae0ac792ffa463c0a601c32a5 (diff)
downloadlinux-8cf33316817d8349fa3125584a0f4767b3e4b72d.tar.bz2
staging: rtl8192e: Convert typedef BA_RECORD to struct ba_record
Remove typedef from struct. Rename struct. Rename uses. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Diffstat (limited to 'drivers/staging/rtl8192e/rtl819x_TS.h')
-rw-r--r--drivers/staging/rtl8192e/rtl819x_TS.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/rtl8192e/rtl819x_TS.h b/drivers/staging/rtl8192e/rtl819x_TS.h
index 20f8486c5fe7..0baf888e5457 100644
--- a/drivers/staging/rtl8192e/rtl819x_TS.h
+++ b/drivers/staging/rtl8192e/rtl819x_TS.h
@@ -45,8 +45,8 @@ struct ts_common_info {
struct tx_ts_record {
struct ts_common_info TsCommonInfo;
u16 TxCurSeq;
- BA_RECORD TxPendingBARecord;
- BA_RECORD TxAdmittedBARecord;
+ struct ba_record TxPendingBARecord;
+ struct ba_record TxAdmittedBARecord;
u8 bAddBaReqInProgress;
u8 bAddBaReqDelayed;
u8 bUsingBa;
@@ -61,7 +61,7 @@ struct rx_ts_record {
u16 RxTimeoutIndicateSeq;
struct list_head RxPendingPktList;
struct timer_list RxPktPendingTimer;
- BA_RECORD RxAdmittedBARecord;
+ struct ba_record RxAdmittedBARecord;
u16 RxLastSeqNum;
u8 RxLastFragNum;
u8 num;