staging: wilc1000: rename u8mode of struct host_if_wep_attr
authorTony Cho <tony.cho@atmel.com>
Mon, 12 Oct 2015 07:56:14 +0000 (16:56 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 13 Oct 2015 03:58:01 +0000 (20:58 -0700)
This patch renames u8mode of struct host_if_wep_attr to mode to avoid
CamelCase naming convention.

Signed-off-by: Tony Cho <tony.cho@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/host_interface.c

index c808f928b1e7aef25031b27d3542a847e5eb64d9..edea2654c9ea3ddadfb9130261cb907be5b29dbf 100644 (file)
@@ -111,7 +111,7 @@ struct host_if_wep_attr {
        u8 *key;
        u8 key_len;
        u8 index;
-       u8 u8mode;
+       u8 mode;
        enum AUTHTYPE tenuAuth_type;
 };
 
@@ -2353,7 +2353,7 @@ static int Handle_Key(struct host_if_drv *hif_drv,
                        strWIDList[0].id = (u16)WID_11I_MODE;
                        strWIDList[0].type = WID_CHAR;
                        strWIDList[0].size = sizeof(char);
-                       strWIDList[0].val = (s8 *)(&(pstrHostIFkeyAttr->uniHostIFkeyAttr.wep.u8mode));
+                       strWIDList[0].val = (s8 *)(&(pstrHostIFkeyAttr->uniHostIFkeyAttr.wep.mode));
 
                        strWIDList[1].id = WID_AUTH_TYPE;
                        strWIDList[1].type = WID_CHAR;
@@ -4272,7 +4272,7 @@ s32 host_int_add_wep_key_bss_ap(struct host_if_drv *hif_drv,
 
        msg.body.key_info.uniHostIFkeyAttr.wep.index = u8Keyidx;
 
-       msg.body.key_info.uniHostIFkeyAttr.wep.u8mode = u8mode;
+       msg.body.key_info.uniHostIFkeyAttr.wep.mode = u8mode;
 
        msg.body.key_info.uniHostIFkeyAttr.wep.tenuAuth_type = tenuAuth_type;
        /* send the message */
This page took 0.029138 seconds and 5 git commands to generate.