staging: wilc1000: remove typedef from tenuKeyType

This patch remove typedef from the enum tenuKeyType.
And rename it to KEY_TYPE.

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:
Leo Kim 2015-10-05 15:25:40 +09:00 committed by Greg Kroah-Hartman
parent 841dfc428d
commit b9d963333d
2 changed files with 3 additions and 3 deletions

View File

@ -142,7 +142,7 @@ typedef union _tuniHostIFkeyAttr {
* @version 1.0
*/
struct key_attr {
tenuKeyType enuKeyType;
enum KEY_TYPE enuKeyType;
u8 u8KeyAction;
tuniHostIFkeyAttr uniHostIFkeyAttr;
};

View File

@ -172,12 +172,12 @@ typedef enum {
CONN_DISCONN_EVENT_FORCE_32BIT = 0xFFFFFFFF
} tenuConnDisconnEvent;
typedef enum {
enum KEY_TYPE {
WEP,
WPARxGtk,
WPAPtk,
PMKSA,
} tenuKeyType;
};
/*Scan callBack function definition*/