Commit 6367ae41 authored by John Whitmore's avatar John Whitmore Committed by Greg Kroah-Hartman

staging:rtl8192u: Remove commented out code and indent - Style

Remove old commented out structure and clean up the indentation.

These are coding style changes which should have no impact on runtime
code execution.
Signed-off-by: default avatarJohn Whitmore <johnfwhitmore@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9f488710
...@@ -2,26 +2,19 @@ ...@@ -2,26 +2,19 @@
#ifndef _BATYPE_H_ #ifndef _BATYPE_H_
#define _BATYPE_H_ #define _BATYPE_H_
#define BA_SETUP_TIMEOUT 200 #define BA_SETUP_TIMEOUT 200
#define BA_POLICY_DELAYED 0 #define BA_POLICY_DELAYED 0
#define BA_POLICY_IMMEDIATE 1 #define BA_POLICY_IMMEDIATE 1
#define ADDBA_STATUS_SUCCESS 0 #define ADDBA_STATUS_SUCCESS 0
#define ADDBA_STATUS_REFUSED 37 #define ADDBA_STATUS_REFUSED 37
#define ADDBA_STATUS_INVALID_PARAM 38 #define ADDBA_STATUS_INVALID_PARAM 38
#define DELBA_REASON_END_BA 37 #define DELBA_REASON_END_BA 37
#define DELBA_REASON_UNKNOWN_BA 38 #define DELBA_REASON_UNKNOWN_BA 38
#define DELBA_REASON_TIMEOUT 39 #define DELBA_REASON_TIMEOUT 39
/* whether need define BA Action frames here?
struct ieee80211_ADDBA_Req{
struct ieee80211_header_data header;
u8 category;
u8
} __attribute__ ((packed));
*/
//Is this need?I put here just to make it easier to define structure BA_RECORD //WB
union sequence_control { union sequence_control {
u16 short_data; u16 short_data;
struct { struct {
...@@ -33,28 +26,28 @@ union sequence_control { ...@@ -33,28 +26,28 @@ union sequence_control {
union ba_param_set { union ba_param_set {
u16 short_data; u16 short_data;
struct { struct {
u16 amsdu_support:1; u16 amsdu_support:1;
u16 ba_policy:1; u16 ba_policy:1;
u16 tid:4; u16 tid:4;
u16 buffer_size:10; u16 buffer_size:10;
} field; } field;
}; };
union delba_param_set { union delba_param_set {
u16 short_data; u16 short_data;
struct { struct {
u16 reserved:11; u16 reserved:11;
u16 initiator:1; u16 initiator:1;
u16 tid:4; u16 tid:4;
} field; } field;
}; };
struct ba_record { struct ba_record {
struct timer_list timer; struct timer_list timer;
u8 valid; u8 valid;
u8 dialog_token; u8 dialog_token;
union ba_param_set param_set; union ba_param_set param_set;
u16 timeout_value; u16 timeout_value;
union sequence_control start_seq_ctrl; union sequence_control start_seq_ctrl;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment