Commit 9dfcff4a authored by Chaehyun Lim's avatar Chaehyun Lim Committed by Greg Kroah-Hartman

staging: wilc1000: host_int_init: remove multiple blank lines

This patch removes multiple blank lines in host_int_init function.
Signed-off-by: default avatarChaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1604296d
......@@ -6370,8 +6370,6 @@ s32 host_int_init(tstrWILC_WFIDrv **phWFIDrv)
sema_init(&hWaitResponse, 0);
/*Allocate host interface private structure*/
pstrWFIDrv = kzalloc(sizeof(tstrWILC_WFIDrv), GFP_KERNEL);
if (!pstrWFIDrv) {
......@@ -6404,9 +6402,6 @@ s32 host_int_init(tstrWILC_WFIDrv **phWFIDrv)
sema_init(&(pstrWFIDrv->hSemGetCHNL), 0);
sema_init(&(pstrWFIDrv->hSemInactiveTime), 0);
PRINT_D(HOSTINF_DBG, "INIT: CLIENT COUNT %d\n", clients_count);
if (clients_count == 0) {
......@@ -6427,7 +6422,6 @@ s32 host_int_init(tstrWILC_WFIDrv **phWFIDrv)
mod_timer(&g_hPeriodicRSSI, jiffies + msecs_to_jiffies(5000));
}
setup_timer(&pstrWFIDrv->hScanTimer, TimerCB_Scan, 0);
setup_timer(&pstrWFIDrv->hConnectTimer, TimerCB_Connect, 0);
......@@ -6457,7 +6451,6 @@ s32 host_int_init(tstrWILC_WFIDrv **phWFIDrv)
pstrWFIDrv->strCfgValues.active_scan_time, pstrWFIDrv->strCfgValues.passive_scan_time,
pstrWFIDrv->strCfgValues.curr_tx_rate);
up(&(pstrWFIDrv->gtOsCfgValuesSem));
clients_count++; /* increase number of created entities */
......@@ -6474,7 +6467,6 @@ s32 host_int_init(tstrWILC_WFIDrv **phWFIDrv)
_fail_:
return s32Error;
}
/**
* @brief host_int_deinit
......
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