]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: wilc1000: rename variable gs8GetIP
authorLeo Kim <leo.kim@atmel.com>
Thu, 15 Oct 2015 04:25:05 +0000 (13:25 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 17 Oct 2015 04:49:54 +0000 (21:49 -0700)
This patch renames variable gs8GetIP to get_ip
to avoid CamelCase naming convention.

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>
drivers/staging/wilc1000/host_interface.c

index 592b689d1144740ef33baf282c46b1b601ce2cb4..f64b2052838d3bb231299d3829d6225aaf5b69c2 100644 (file)
@@ -251,7 +251,7 @@ static s8 rssi;
 static s8 link_speed;
 static u8 ch_no;
 static u8 set_ip[2][4];
-static u8 gs8GetIP[2][4];
+static u8 get_ip[2][4];
 static u32 gu32InactiveTime;
 static u8 gu8DelBcn;
 static u32 gu32WidConnRstHack;
@@ -450,11 +450,11 @@ s32 Handle_get_IPAddress(struct host_if_drv *hif_drv, u8 *pu8IPAddr, u8 idx)
 
        PRINT_INFO(HOSTINF_DBG, "%pI4\n", strWID.val);
 
-       memcpy(gs8GetIP[idx], strWID.val, IP_ALEN);
+       memcpy(get_ip[idx], strWID.val, IP_ALEN);
 
        kfree(strWID.val);
 
-       if (memcmp(gs8GetIP[idx], set_ip[idx], IP_ALEN) != 0)
+       if (memcmp(get_ip[idx], set_ip[idx], IP_ALEN) != 0)
                host_int_setup_ipaddress(hif_drv, set_ip[idx], idx);
 
        if (s32Error != 0) {
@@ -463,7 +463,7 @@ s32 Handle_get_IPAddress(struct host_if_drv *hif_drv, u8 *pu8IPAddr, u8 idx)
        }
 
        PRINT_INFO(HOSTINF_DBG, "IP address retrieved:: u8IfIdx = %d\n", idx);
-       PRINT_INFO(HOSTINF_DBG, "%pI4\n", gs8GetIP[idx]);
+       PRINT_INFO(HOSTINF_DBG, "%pI4\n", get_ip[idx]);
        PRINT_INFO(HOSTINF_DBG, "\n");
 
        return s32Error;