summaryrefslogtreecommitdiffstats
path: root/drivers/staging/wilc1000/host_interface.c
diff options
context:
space:
mode:
authorLeo Kim2015-10-13 12:49:47 +0200
committerGreg Kroah-Hartman2015-10-13 18:55:08 +0200
commitf2fc9f6e957bc0b0207fe31bbb6bf9286628c09f (patch)
tree5906bf7b261200e46bd284fbb370c5dc41d326bf /drivers/staging/wilc1000/host_interface.c
parentstaging: wilc1000: rename strHiddenNetwork of struct scan_attr (diff)
downloadkernel-qcow2-linux-f2fc9f6e957bc0b0207fe31bbb6bf9286628c09f.tar.gz
kernel-qcow2-linux-f2fc9f6e957bc0b0207fe31bbb6bf9286628c09f.tar.xz
kernel-qcow2-linux-f2fc9f6e957bc0b0207fe31bbb6bf9286628c09f.zip
staging: wilc1000: fix "ERROR: do not initialise globals to 0 or NULL"
This patch fixes the checkpatch.pl error to host_interface.c. - ERROR: do not initialise globals to 0 or NULL 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>
Diffstat (limited to 'drivers/staging/wilc1000/host_interface.c')
-rw-r--r--drivers/staging/wilc1000/host_interface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c
index 506c73fc6003..0296bd98d9bf 100644
--- a/drivers/staging/wilc1000/host_interface.c
+++ b/drivers/staging/wilc1000/host_interface.c
@@ -239,7 +239,7 @@ enum scan_conn_timer {
static struct host_if_drv *wfidrv_list[NUM_CONCURRENT_IFC + 1];
struct host_if_drv *terminated_handle;
struct host_if_drv *gWFiDrvHandle;
-bool g_obtainingIP = false;
+bool g_obtainingIP;
u8 P2P_LISTEN_STATE;
static struct task_struct *HostIFthreadHandler;
static WILC_MsgQueueHandle gMsgQHostIF;
@@ -256,7 +256,7 @@ u8 gau8MulticastMacAddrList[WILC_MULTICAST_TABLE_SIZE][ETH_ALEN];
static u8 gapu8RcvdAssocResp[MAX_ASSOC_RESP_FRAME_SIZE];
-bool gbScanWhileConnected = false;
+bool gbScanWhileConnected;
static s8 gs8Rssi;
static s8 gs8lnkspd;