This patch removes typedef from the struct tstrHostIFwpaAttr.
And rename it to host_if_wpa_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>
};
/*!
- * @struct tstrHostIFwpaAttr
+ * @struct host_if_wpa_attr
* @brief Structure to hold Host IF Scan Attributes
* @details
* @todo
* @date 25 March 2012
* @version 1.0
*/
-typedef struct _tstrHostIFwpaAttr {
+struct host_if_wpa_attr {
u8 *pu8key;
const u8 *pu8macaddr;
u8 *pu8seq;
u8 u8keyidx;
u8 u8Keylen;
u8 u8Ciphermode;
-} tstrHostIFwpaAttr;
+};
/*!
*/
union host_if_key_attr {
struct host_if_wep_attr strHostIFwepAttr;
- tstrHostIFwpaAttr strHostIFwpaAttr;
+ struct host_if_wpa_attr strHostIFwpaAttr;
tstrHostIFpmkidAttr strHostIFpmkidAttr;
};