Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 197059
b: refs/heads/master
c: 2de9753
h: refs/heads/master
i:
  197057: e30ee18
  197055: e3615f7
v: v3
  • Loading branch information
Sankar P authored and Greg Kroah-Hartman committed May 11, 2010
1 parent 479f0ae commit 55ef731
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ef1566e2bb23bc4d7384c27fe973f4d16c2f3c25
refs/heads/master: 2de975336fbcf5a7b76703b00276668d0f932ebe
18 changes: 9 additions & 9 deletions trunk/drivers/staging/winbond/mac_structures.h
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ struct Extended_Supported_Rates_Element
#define OUI_CIPHER_CCMP 0x04
#define OUI_CIPHER_WEP_104 0x05

typedef struct _SUITE_SELECTOR_
struct suite_selector
{
union
{
Expand All @@ -447,23 +447,23 @@ typedef struct _SUITE_SELECTOR_
u8 Type;
}SuitSelector;
};
}SUITE_SELECTOR;
};

//-- WPA --
struct RSN_Information_Element
{
u8 Element_ID;
u8 Length;
SUITE_SELECTOR OuiWPAAdditional;//WPA version 2.0 additional field, and should be 00:50:F2:01
struct suite_selector OuiWPAAdditional; /* WPA version 2.0 additional field, and should be 00:50:F2:01 */
u16 Version;
SUITE_SELECTOR GroupKeySuite;
struct suite_selector GroupKeySuite;
u16 PairwiseKeySuiteCount;
SUITE_SELECTOR PairwiseKeySuite[1];
struct suite_selector PairwiseKeySuite[1];
}__attribute__ ((packed));
struct RSN_Auth_Sub_Information_Element
{
u16 AuthKeyMngtSuiteCount;
SUITE_SELECTOR AuthKeyMngtSuite[1];
struct suite_selector AuthKeyMngtSuite[1];
}__attribute__ ((packed));

//-- WPA2 --
Expand Down Expand Up @@ -508,16 +508,16 @@ struct WPA2_RSN_Information_Element
u8 Element_ID;
u8 Length;
u16 Version;
SUITE_SELECTOR GroupKeySuite;
struct suite_selector GroupKeySuite;
u16 PairwiseKeySuiteCount;
SUITE_SELECTOR PairwiseKeySuite[1];
struct suite_selector PairwiseKeySuite[1];

}__attribute__ ((packed));

struct WPA2_RSN_Auth_Sub_Information_Element
{
u16 AuthKeyMngtSuiteCount;
SUITE_SELECTOR AuthKeyMngtSuite[1];
struct suite_selector AuthKeyMngtSuite[1];
}__attribute__ ((packed));


Expand Down

0 comments on commit 55ef731

Please sign in to comment.