summaryrefslogtreecommitdiff
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.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/staging/rt2860/common/action.h b/drivers/staging/rt2860/common/action.h
index f1d1ac73b1cb..974f8b84039f 100644
--- a/drivers/staging/rt2860/common/action.h
+++ b/drivers/staging/rt2860/common/action.h
@@ -39,18 +39,18 @@
#ifndef __ACTION_H__
#define __ACTION_H__
-typedef struct PACKED __HT_INFO_OCTET {
+struct PACKED rt_ht_information_octet {
u8 Request:1;
u8 Forty_MHz_Intolerant:1;
u8 STA_Channel_Width:1;
u8 Reserved:5;
-} HT_INFORMATION_OCTET;
+};
-typedef struct PACKED __FRAME_HT_INFO {
- HEADER_802_11 Hdr;
+struct PACKED rt_frame_ht_info {
+ struct rt_header_802_11 Hdr;
u8 Category;
u8 Action;
- HT_INFORMATION_OCTET HT_Info;
-} FRAME_HT_INFO, *PFRAME_HT_INFO;
+ struct rt_ht_information_octet HT_Info;
+};
#endif /* __ACTION_H__ */