From: Leo Kim <[email protected]>

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

Signed-off-by: Leo Kim <[email protected]>
Signed-off-by: Tony Cho <[email protected]>
---
 drivers/staging/wilc1000/host_interface.c | 2 +-
 drivers/staging/wilc1000/host_interface.h | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/wilc1000/host_interface.c 
b/drivers/staging/wilc1000/host_interface.c
index bcfbb91..2e71505 100644
--- a/drivers/staging/wilc1000/host_interface.c
+++ b/drivers/staging/wilc1000/host_interface.c
@@ -142,7 +142,7 @@ typedef union _tuniHostIFkeyAttr {
  *  @version           1.0
  */
 struct key_attr {
-       tenuKeyType enuKeyType;
+       enum KEY_TYPE enuKeyType;
        u8 u8KeyAction;
        tuniHostIFkeyAttr uniHostIFkeyAttr;
 };
diff --git a/drivers/staging/wilc1000/host_interface.h 
b/drivers/staging/wilc1000/host_interface.h
index 779ff99..856cab0 100644
--- a/drivers/staging/wilc1000/host_interface.h
+++ b/drivers/staging/wilc1000/host_interface.h
@@ -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*/
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to