Skip to content

Commit

Permalink
Staging: winbond: Convert typedef struct _PMKID to struct pmkid
Browse files Browse the repository at this point in the history
This patch converts the definition typedef struct _PMKID to
struct pmkid and also the part where the typedef was used.

Signed-off-by: Sankar P <sankar.curiosity@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Sankar P authored and Greg Kroah-Hartman committed May 11, 2010
1 parent 1a48ba1 commit 649f065
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/staging/winbond/mac_structures.h
Original file line number Diff line number Diff line change
Expand Up @@ -505,10 +505,10 @@ struct RSN_Capability_Element
}__attribute__ ((packed)) ;

#ifdef _WPA2_
typedef struct _PMKID
struct pmkid
{
u8 pValue[16];
}PMKID;
};

struct WPA2_RSN_Information_Element
{
Expand All @@ -531,7 +531,7 @@ struct WPA2_RSN_Auth_Sub_Information_Element
struct PMKID_Information_Element
{
u16 PMKID_Count;
PMKID pmkid [16] ;
struct pmkid pmkid[16];
}__attribute__ ((packed));

#endif //enddef _WPA2_
Expand Down

0 comments on commit 649f065

Please sign in to comment.