Commit d74e9769 authored by Joe Perches's avatar Joe Perches Committed by Greg Kroah-Hartman

staging:vt6655:80211hdr: Whitespace cleanups

Neatening only.
git diff -w shows no differences.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c45bb8cb
...@@ -288,42 +288,42 @@ ...@@ -288,42 +288,42 @@
#define IEEE_ADDR_GROUP 0x01 #define IEEE_ADDR_GROUP 0x01
typedef struct { typedef struct {
unsigned char abyAddr[6]; unsigned char abyAddr[6];
} IEEE_ADDR, *PIEEE_ADDR; } IEEE_ADDR, *PIEEE_ADDR;
/* 802.11 Header Format */ /* 802.11 Header Format */
typedef struct tagWLAN_80211HDR_A2 { typedef struct tagWLAN_80211HDR_A2 {
unsigned short wFrameCtl; unsigned short wFrameCtl;
unsigned short wDurationID; unsigned short wDurationID;
unsigned char abyAddr1[WLAN_ADDR_LEN]; unsigned char abyAddr1[WLAN_ADDR_LEN];
unsigned char abyAddr2[WLAN_ADDR_LEN]; unsigned char abyAddr2[WLAN_ADDR_LEN];
} __attribute__ ((__packed__)) } __attribute__ ((__packed__))
WLAN_80211HDR_A2, *PWLAN_80211HDR_A2; WLAN_80211HDR_A2, *PWLAN_80211HDR_A2;
typedef struct tagWLAN_80211HDR_A3 { typedef struct tagWLAN_80211HDR_A3 {
unsigned short wFrameCtl; unsigned short wFrameCtl;
unsigned short wDurationID; unsigned short wDurationID;
unsigned char abyAddr1[WLAN_ADDR_LEN]; unsigned char abyAddr1[WLAN_ADDR_LEN];
unsigned char abyAddr2[WLAN_ADDR_LEN]; unsigned char abyAddr2[WLAN_ADDR_LEN];
unsigned char abyAddr3[WLAN_ADDR_LEN]; unsigned char abyAddr3[WLAN_ADDR_LEN];
unsigned short wSeqCtl; unsigned short wSeqCtl;
}__attribute__ ((__packed__)) } __attribute__ ((__packed__))
WLAN_80211HDR_A3, *PWLAN_80211HDR_A3; WLAN_80211HDR_A3, *PWLAN_80211HDR_A3;
typedef struct tagWLAN_80211HDR_A4 { typedef struct tagWLAN_80211HDR_A4 {
unsigned short wFrameCtl; unsigned short wFrameCtl;
unsigned short wDurationID; unsigned short wDurationID;
unsigned char abyAddr1[WLAN_ADDR_LEN]; unsigned char abyAddr1[WLAN_ADDR_LEN];
unsigned char abyAddr2[WLAN_ADDR_LEN]; unsigned char abyAddr2[WLAN_ADDR_LEN];
unsigned char abyAddr3[WLAN_ADDR_LEN]; unsigned char abyAddr3[WLAN_ADDR_LEN];
unsigned short wSeqCtl; unsigned short wSeqCtl;
unsigned char abyAddr4[WLAN_ADDR_LEN]; unsigned char abyAddr4[WLAN_ADDR_LEN];
} __attribute__ ((__packed__)) } __attribute__ ((__packed__))
WLAN_80211HDR_A4, *PWLAN_80211HDR_A4; WLAN_80211HDR_A4, *PWLAN_80211HDR_A4;
...@@ -331,9 +331,9 @@ WLAN_80211HDR_A4, *PWLAN_80211HDR_A4; ...@@ -331,9 +331,9 @@ WLAN_80211HDR_A4, *PWLAN_80211HDR_A4;
typedef union tagUWLAN_80211HDR { typedef union tagUWLAN_80211HDR {
WLAN_80211HDR_A2 sA2; WLAN_80211HDR_A2 sA2;
WLAN_80211HDR_A3 sA3; WLAN_80211HDR_A3 sA3;
WLAN_80211HDR_A4 sA4; WLAN_80211HDR_A4 sA4;
} UWLAN_80211HDR, *PUWLAN_80211HDR; } UWLAN_80211HDR, *PUWLAN_80211HDR;
......
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