diff options
| author | Chaehyun Lim <[email protected]> | 2015-09-22 18:34:57 +0900 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2015-09-29 02:29:52 +0200 |
| commit | 9dfcff4a42ef694c09adf8f2d7b6ceff8cbe21ec (patch) | |
| tree | 4914eb7b7133db4dbc4c7307567d01d323fa3ffa | |
| parent | 1604296d20a7d278f525a8134e2db1a727b2fdd1 (diff) | |
staging: wilc1000: host_int_init: remove multiple blank lines
This patch removes multiple blank lines in host_int_init function.
Signed-off-by: Chaehyun Lim <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/staging/wilc1000/host_interface.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 6b744a2c1f96..2687e8165e0e 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -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 @@ _fail_mq_: _fail_: return s32Error; - } /** * @brief host_int_deinit |