mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-20 03:04:01 +08:00
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: John Whitmore <johnfwhitmore@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
9f4887109a
commit
6367ae41f2
@ -2,26 +2,19 @@
|
||||
#ifndef _BATYPE_H_
|
||||
#define _BATYPE_H_
|
||||
|
||||
#define BA_SETUP_TIMEOUT 200
|
||||
#define BA_SETUP_TIMEOUT 200
|
||||
|
||||
#define BA_POLICY_DELAYED 0
|
||||
#define BA_POLICY_IMMEDIATE 1
|
||||
#define BA_POLICY_DELAYED 0
|
||||
#define BA_POLICY_IMMEDIATE 1
|
||||
|
||||
#define ADDBA_STATUS_SUCCESS 0
|
||||
#define ADDBA_STATUS_SUCCESS 0
|
||||
#define ADDBA_STATUS_REFUSED 37
|
||||
#define ADDBA_STATUS_INVALID_PARAM 38
|
||||
|
||||
#define DELBA_REASON_END_BA 37
|
||||
#define DELBA_REASON_UNKNOWN_BA 38
|
||||
#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
|
||||
#define DELBA_REASON_END_BA 37
|
||||
#define DELBA_REASON_UNKNOWN_BA 38
|
||||
#define DELBA_REASON_TIMEOUT 39
|
||||
|
||||
union sequence_control {
|
||||
u16 short_data;
|
||||
struct {
|
||||
@ -33,28 +26,28 @@ union sequence_control {
|
||||
union ba_param_set {
|
||||
u16 short_data;
|
||||
struct {
|
||||
u16 amsdu_support:1;
|
||||
u16 ba_policy:1;
|
||||
u16 tid:4;
|
||||
u16 buffer_size:10;
|
||||
u16 amsdu_support:1;
|
||||
u16 ba_policy:1;
|
||||
u16 tid:4;
|
||||
u16 buffer_size:10;
|
||||
} field;
|
||||
};
|
||||
|
||||
union delba_param_set {
|
||||
u16 short_data;
|
||||
struct {
|
||||
u16 reserved:11;
|
||||
u16 initiator:1;
|
||||
u16 tid:4;
|
||||
u16 reserved:11;
|
||||
u16 initiator:1;
|
||||
u16 tid:4;
|
||||
} field;
|
||||
};
|
||||
|
||||
struct ba_record {
|
||||
struct timer_list timer;
|
||||
u8 valid;
|
||||
u8 dialog_token;
|
||||
union ba_param_set param_set;
|
||||
u16 timeout_value;
|
||||
struct timer_list timer;
|
||||
u8 valid;
|
||||
u8 dialog_token;
|
||||
union ba_param_set param_set;
|
||||
u16 timeout_value;
|
||||
union sequence_control start_seq_ctrl;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user