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

staging: wilc1000: rename variable gu8DelBcn

This patch renames variable gu8DelBcn to del_beacon
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 ad26906f
...@@ -253,7 +253,7 @@ static u8 ch_no; ...@@ -253,7 +253,7 @@ 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 inactive_time; static u32 inactive_time;
static u8 gu8DelBcn; static u8 del_beacon;
static u32 gu32WidConnRstHack; static u32 gu32WidConnRstHack;
u8 *gu8FlushedJoinReq; u8 *gu8FlushedJoinReq;
...@@ -2343,7 +2343,7 @@ static void Handle_DelBeacon(struct host_if_drv *hif_drv) ...@@ -2343,7 +2343,7 @@ static void Handle_DelBeacon(struct host_if_drv *hif_drv)
strWID.id = (u16)WID_DEL_BEACON; strWID.id = (u16)WID_DEL_BEACON;
strWID.type = WID_CHAR; strWID.type = WID_CHAR;
strWID.size = sizeof(char); strWID.size = sizeof(char);
strWID.val = &gu8DelBcn; strWID.val = &del_beacon;
if (strWID.val == NULL) if (strWID.val == NULL)
return; return;
......
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