staging: wilc1000: remove typedef from tstrHostIFpmkid
authorLeo Kim <leo.kim@atmel.com>
Mon, 5 Oct 2015 06:25:45 +0000 (15:25 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 8 Oct 2015 09:56:03 +0000 (10:56 +0100)
This patch removes typedef from the struct tstrHostIFpmkid.
And rename it to host_if_pmkid.

Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Tony Cho <tony.cho@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/host_interface.h
drivers/staging/wilc1000/wilc_wfi_cfgoperations.c

index e9a9715..460c73b 100644 (file)
@@ -83,14 +83,14 @@ typedef enum {
        HOST_IF_FORCE_32BIT             = 0xFFFFFFFF
 } tenuHostIFstate;
 
-typedef struct _tstrHostIFpmkid {
+struct host_if_pmkid {
        u8 bssid[ETH_ALEN];
        u8 pmkid[PMKID_LEN];
-} tstrHostIFpmkid;
+};
 
 struct host_if_pmkid_attr {
        u8 numpmkid;
-       tstrHostIFpmkid pmkidlist[WILC_MAX_NUM_PMKIDS];
+       struct host_if_pmkid pmkidlist[WILC_MAX_NUM_PMKIDS];
 };
 
 typedef enum {
index eac77ce..8068a7e 100644 (file)
@@ -1885,7 +1885,7 @@ static int del_pmksa(struct wiphy *wiphy, struct net_device *netdev,
                                 ETH_ALEN)) {
                        /*If bssid is found, reset the values*/
                        PRINT_D(CFG80211_DBG, "Reseting PMKID values\n");
-                       memset(&priv->pmkid_list.pmkidlist[i], 0, sizeof(tstrHostIFpmkid));
+                       memset(&priv->pmkid_list.pmkidlist[i], 0, sizeof(struct host_if_pmkid));
                        flag = PMKID_FOUND;
                        break;
                }