Commit ad26906f authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman

staging: wilc1000: rename variable gu32InactiveTime

This patch renames variable gu32InactiveTime to inactive_time
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 1e75d01c
...@@ -252,7 +252,7 @@ static s8 link_speed; ...@@ -252,7 +252,7 @@ static s8 link_speed;
static u8 ch_no; static u8 ch_no;
static u8 set_ip[2][4]; static u8 set_ip[2][4];
static u8 get_ip[2][4]; static u8 get_ip[2][4];
static u32 gu32InactiveTime; static u32 inactive_time;
static u8 gu8DelBcn; static u8 gu8DelBcn;
static u32 gu32WidConnRstHack; static u32 gu32WidConnRstHack;
...@@ -2257,7 +2257,7 @@ static s32 Handle_Get_InActiveTime(struct host_if_drv *hif_drv, ...@@ -2257,7 +2257,7 @@ static s32 Handle_Get_InActiveTime(struct host_if_drv *hif_drv,
strWID.id = (u16)WID_GET_INACTIVE_TIME; strWID.id = (u16)WID_GET_INACTIVE_TIME;
strWID.type = WID_INT; strWID.type = WID_INT;
strWID.val = (s8 *)&gu32InactiveTime; strWID.val = (s8 *)&inactive_time;
strWID.size = sizeof(u32); strWID.size = sizeof(u32);
...@@ -2269,8 +2269,7 @@ static s32 Handle_Get_InActiveTime(struct host_if_drv *hif_drv, ...@@ -2269,8 +2269,7 @@ static s32 Handle_Get_InActiveTime(struct host_if_drv *hif_drv,
return -EFAULT; return -EFAULT;
} }
PRINT_D(CFG80211_DBG, "Getting inactive time : %d\n", inactive_time);
PRINT_D(CFG80211_DBG, "Getting inactive time : %d\n", gu32InactiveTime);
up(&hif_drv->hSemInactiveTime); up(&hif_drv->hSemInactiveTime);
...@@ -3851,7 +3850,7 @@ s32 host_int_get_inactive_time(struct host_if_drv *hif_drv, ...@@ -3851,7 +3850,7 @@ s32 host_int_get_inactive_time(struct host_if_drv *hif_drv,
down(&hif_drv->hSemInactiveTime); down(&hif_drv->hSemInactiveTime);
*pu32InactiveTime = gu32InactiveTime; *pu32InactiveTime = inactive_time;
return s32Error; return s32Error;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment