aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/winbond
diff options
context:
space:
mode:
authorSankar P <sankar.curiosity@gmail.com>2010-03-20 02:10:59 +0530
committerGreg Kroah-Hartman <gregkh@suse.de>2010-05-11 11:35:47 -0700
commit649f0650acae35ff301b81159820bf8eecf7f68e (patch)
tree302fe7af6d614bc43756d5f87e6abd0f91e370f7 /drivers/staging/winbond
parentStaging: winbond: mlme_s.h Coding style fixes (diff)
downloadlinux-dev-649f0650acae35ff301b81159820bf8eecf7f68e.tar.xz
linux-dev-649f0650acae35ff301b81159820bf8eecf7f68e.zip
Staging: winbond: Convert typedef struct _PMKID to struct pmkid
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>
Diffstat (limited to 'drivers/staging/winbond')
-rw-r--r--drivers/staging/winbond/mac_structures.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/winbond/mac_structures.h b/drivers/staging/winbond/mac_structures.h
index 0d1619601c0b..350299026d48 100644
--- a/drivers/staging/winbond/mac_structures.h
+++ b/drivers/staging/winbond/mac_structures.h
@@ -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
{
@@ -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_