aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/rt2860/common/action.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/staging/rt2860/common/action.h')
-rw-r--r--drivers/staging/rt2860/common/action.h31
1 files changed, 13 insertions, 18 deletions
diff --git a/drivers/staging/rt2860/common/action.h b/drivers/staging/rt2860/common/action.h
index cfc2a5f8d1aa..974f8b84039f 100644
--- a/drivers/staging/rt2860/common/action.h
+++ b/drivers/staging/rt2860/common/action.h
@@ -39,23 +39,18 @@
#ifndef __ACTION_H__
#define __ACTION_H__
-typedef struct PACKED __HT_INFO_OCTET
-{
- UCHAR Request:1;
- UCHAR Forty_MHz_Intolerant:1;
- UCHAR STA_Channel_Width:1;
- UCHAR Reserved:5;
-} HT_INFORMATION_OCTET;
-
-
-typedef struct PACKED __FRAME_HT_INFO
-{
- HEADER_802_11 Hdr;
- UCHAR Category;
- UCHAR Action;
- HT_INFORMATION_OCTET HT_Info;
-} FRAME_HT_INFO, *PFRAME_HT_INFO;
+struct PACKED rt_ht_information_octet {
+ u8 Request:1;
+ u8 Forty_MHz_Intolerant:1;
+ u8 STA_Channel_Width:1;
+ u8 Reserved:5;
+};
+
+struct PACKED rt_frame_ht_info {
+ struct rt_header_802_11 Hdr;
+ u8 Category;
+ u8 Action;
+ struct rt_ht_information_octet HT_Info;
+};
#endif /* __ACTION_H__ */
-
-