This patch removes typedef from the struct tstrHostIFwepAttr.
And rename it to host_if_wep_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 tstrHostIFwepAttr
+ * @struct host_if_wep_attr
* @brief Structure to hold Host IF Scan Attributes
* @details
* @todo
* @date 25 March 2012
* @version 1.0
*/
-typedef struct _tstrHostIFwepAttr {
+struct host_if_wep_attr {
u8 *pu8WepKey;
u8 u8WepKeylen;
u8 u8Wepidx;
u8 u8mode;
enum AUTHTYPE tenuAuth_type;
-
-} tstrHostIFwepAttr;
+};
/*!
* @struct host_if_key_attr
* @version 1.0
*/
union host_if_key_attr {
- tstrHostIFwepAttr strHostIFwepAttr;
+ struct host_if_wep_attr strHostIFwepAttr;
tstrHostIFwpaAttr strHostIFwpaAttr;
tstrHostIFpmkidAttr strHostIFpmkidAttr;
};