aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8192e/rtl819x_BA.h
diff options
context:
space:
mode:
authorLarry Finger <Larry.Finger@lwfinger.net>2011-07-19 10:14:55 -0500
committerLarry Finger <Larry.Finger@lwfinger.net>2011-08-24 01:54:30 -0500
commit6857f36710863716dc60c49e33769dd694aacda6 (patch)
treede7c49fb539fa8e94d4212130020d0d3899e6466 /drivers/staging/rtl8192e/rtl819x_BA.h
parentstaging: rtl8192e: Convert typedef SEQUENCE_CONTROL to union sequence_control (diff)
downloadlinux-dev-6857f36710863716dc60c49e33769dd694aacda6.tar.xz
linux-dev-6857f36710863716dc60c49e33769dd694aacda6.zip
staging: rtl8192e: Convert typedef BA_PARAM_SET to union ba_param_set
Remove typedef from union. Rename union. Rename uses. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Diffstat (limited to 'drivers/staging/rtl8192e/rtl819x_BA.h')
-rw-r--r--drivers/staging/rtl8192e/rtl819x_BA.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/rtl8192e/rtl819x_BA.h b/drivers/staging/rtl8192e/rtl819x_BA.h
index a868d659f68c..1e2cc2e344af 100644
--- a/drivers/staging/rtl8192e/rtl819x_BA.h
+++ b/drivers/staging/rtl8192e/rtl819x_BA.h
@@ -45,7 +45,7 @@ union sequence_control {
}field;
};
-typedef union _BA_PARAM_SET {
+union ba_param_set {
u8 charData[2];
u16 shortData;
struct {
@@ -54,7 +54,7 @@ typedef union _BA_PARAM_SET {
u16 TID:4;
u16 BufferSize:10;
} field;
-} BA_PARAM_SET, *PBA_PARAM_SET;
+};
typedef union _DELBA_PARAM_SET {
u8 charData[2];
@@ -70,7 +70,7 @@ struct ba_record {
struct timer_list Timer;
u8 bValid;
u8 DialogToken;
- BA_PARAM_SET BaParamSet;
+ union ba_param_set BaParamSet;
u16 BaTimeoutValue;
union sequence_control BaStartSeqCtrl;
};