staging: wilc1000: remove typedef from tstrHostIFpmkidAttr
This patch removes typedef from the struct tstrHostIFpmkidAttr. And rename it to host_if_pmkid_attr. 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>
This commit is contained in:
parent
4372d3d3c9
commit
a949f9095d
@ -127,7 +127,7 @@ struct host_if_wep_attr {
|
||||
union host_if_key_attr {
|
||||
struct host_if_wep_attr strHostIFwepAttr;
|
||||
struct host_if_wpa_attr strHostIFwpaAttr;
|
||||
tstrHostIFpmkidAttr strHostIFpmkidAttr;
|
||||
struct host_if_pmkid_attr strHostIFpmkidAttr;
|
||||
};
|
||||
|
||||
/*!
|
||||
@ -4725,7 +4725,7 @@ s32 host_int_add_rx_gtk(tstrWILC_WFIDrv *hWFIDrv, const u8 *pu8RxGtk, u8 u8GtkKe
|
||||
* @date 8 March 2012
|
||||
* @version 1.0
|
||||
*/
|
||||
s32 host_int_set_pmkid_info(tstrWILC_WFIDrv *hWFIDrv, tstrHostIFpmkidAttr *pu8PmkidInfoArray)
|
||||
s32 host_int_set_pmkid_info(tstrWILC_WFIDrv *hWFIDrv, struct host_if_pmkid_attr *pu8PmkidInfoArray)
|
||||
{
|
||||
s32 s32Error = 0;
|
||||
tstrWILC_WFIDrv *pstrWFIDrv = (tstrWILC_WFIDrv *)hWFIDrv;
|
||||
|
@ -88,10 +88,10 @@ typedef struct _tstrHostIFpmkid {
|
||||
u8 pmkid[PMKID_LEN];
|
||||
} tstrHostIFpmkid;
|
||||
|
||||
typedef struct _tstrHostIFpmkidAttr {
|
||||
struct host_if_pmkid_attr {
|
||||
u8 numpmkid;
|
||||
tstrHostIFpmkid pmkidlist[WILC_MAX_NUM_PMKIDS];
|
||||
} tstrHostIFpmkidAttr;
|
||||
};
|
||||
|
||||
typedef enum {
|
||||
AUTORATE = 0,
|
||||
@ -550,7 +550,7 @@ s32 host_int_add_tx_gtk(tstrWILC_WFIDrv *hWFIDrv, u8 u8KeyLen, u8 *pu8TxGtk, u8
|
||||
* @version 1.0
|
||||
*/
|
||||
|
||||
s32 host_int_set_pmkid_info(tstrWILC_WFIDrv *hWFIDrv, tstrHostIFpmkidAttr *pu8PmkidInfoArray);
|
||||
s32 host_int_set_pmkid_info(tstrWILC_WFIDrv *hWFIDrv, struct host_if_pmkid_attr *pu8PmkidInfoArray);
|
||||
/**
|
||||
* @brief gets the cached the pmkid info
|
||||
* @details valid only in BSS STA mode if External Supplicant
|
||||
|
@ -1924,7 +1924,7 @@ static int flush_pmksa(struct wiphy *wiphy, struct net_device *netdev)
|
||||
PRINT_D(CFG80211_DBG, "Flushing PMKID key values\n");
|
||||
|
||||
/*Get cashed Pmkids and set all with zeros*/
|
||||
memset(&priv->pmkid_list, 0, sizeof(tstrHostIFpmkidAttr));
|
||||
memset(&priv->pmkid_list, 0, sizeof(struct host_if_pmkid_attr));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -122,7 +122,7 @@ struct wilc_priv {
|
||||
struct net_device *dev;
|
||||
struct napi_struct napi;
|
||||
tstrWILC_WFIDrv *hWILCWFIDrv;
|
||||
tstrHostIFpmkidAttr pmkid_list;
|
||||
struct host_if_pmkid_attr pmkid_list;
|
||||
struct WILC_WFI_stats netstats;
|
||||
u8 WILC_WFI_wep_default;
|
||||
u8 WILC_WFI_wep_key[4][WLAN_KEY_LEN_WEP104];
|
||||
|
Loading…
x
Reference in New Issue
Block a user