This patch remove typedef from the union tuniHostIFkeyAttr.
And rename it to host_if_key_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>
} tstrHostIFwepAttr;
/*!
- * @struct tuniHostIFkeyAttr
+ * @struct host_if_key_attr
* @brief Structure to hold Host IF Scan Attributes
* @details
* @todo
* @date 25 March 2012
* @version 1.0
*/
-typedef union _tuniHostIFkeyAttr {
+union host_if_key_attr {
tstrHostIFwepAttr strHostIFwepAttr;
tstrHostIFwpaAttr strHostIFwpaAttr;
tstrHostIFpmkidAttr strHostIFpmkidAttr;
-} tuniHostIFkeyAttr;
+};
/*!
* @struct key_attr
struct key_attr {
enum KEY_TYPE enuKeyType;
u8 u8KeyAction;
- tuniHostIFkeyAttr uniHostIFkeyAttr;
+ union host_if_key_attr uniHostIFkeyAttr;
};