Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1e75d01c authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: rename variable gs8GetIP



This patch renames variable gs8GetIP to get_ip
to avoid CamelCase naming convention.

Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarTony Cho <tony.cho@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 078b1e98
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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;