|
@@ -111,38 +111,6 @@ enum extscan_report_events_type {
|
|
|
#define WMA_EXTSCAN_MAX_HOTLIST_ENTRIES 10
|
|
|
#endif
|
|
|
|
|
|
-/**
|
|
|
- * wma_dec_pending_scans() - Decrements the number of pending scans
|
|
|
- * @wma: The WMA handle to operate on
|
|
|
- *
|
|
|
- * Return: none
|
|
|
- */
|
|
|
-static void wma_dec_pending_scans(tp_wma_handle wma)
|
|
|
-{
|
|
|
- int32_t scan_cnt = qdf_atomic_read(&wma->num_pending_scans);
|
|
|
-
|
|
|
- if (scan_cnt <= 0) {
|
|
|
- WMA_LOGE("Stopping pending scan, but no scans were pending!");
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- qdf_atomic_dec(&wma->num_pending_scans);
|
|
|
- WMA_LOGD("Ending pending scan: %d <- %d", scan_cnt, scan_cnt - 1);
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- * wma_inc_pending_scans() - Increments the number of pending scans
|
|
|
- * @wma: The WMA handle to operate on
|
|
|
- *
|
|
|
- * Return: none
|
|
|
- */
|
|
|
-static void wma_inc_pending_scans(tp_wma_handle wma)
|
|
|
-{
|
|
|
- int32_t scan_cnt = qdf_atomic_inc_return(&wma->num_pending_scans);
|
|
|
-
|
|
|
- WMA_LOGD("Starting pending scan: %d -> %d", scan_cnt - 1, scan_cnt);
|
|
|
-}
|
|
|
-
|
|
|
/**
|
|
|
* wma_is_mcc_24G() - check that if device is in 2.4GHz MCC
|
|
|
* @handle: wma handle
|
|
@@ -571,8 +539,6 @@ QDF_STATUS wma_start_scan(tp_wma_handle wma_handle,
|
|
|
goto error1;
|
|
|
}
|
|
|
|
|
|
- wma_inc_pending_scans(wma_handle);
|
|
|
-
|
|
|
WMA_LOGI("scan_id 0x%x, vdev_id %d, p2pScanType %d, msg_type 0x%x",
|
|
|
cmd.scan_id, cmd.vdev_id, scan_req->p2pScanType, msg_type);
|
|
|
|
|
@@ -592,16 +558,13 @@ QDF_STATUS wma_start_scan(tp_wma_handle wma_handle,
|
|
|
&cmd);
|
|
|
if (QDF_IS_STATUS_ERROR(qdf_status)) {
|
|
|
WMA_LOGE("wmi_unified_cmd_send returned Error %d", qdf_status);
|
|
|
- goto dec_scans;
|
|
|
+ goto error1;
|
|
|
}
|
|
|
|
|
|
WMA_LOGD("WMA --> WMI_START_SCAN_CMDID");
|
|
|
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
|
|
|
-dec_scans:
|
|
|
- wma_dec_pending_scans(wma_handle);
|
|
|
-
|
|
|
error1:
|
|
|
if (NULL != cmd.chan_list)
|
|
|
qdf_mem_free(cmd.chan_list);
|
|
@@ -5364,9 +5327,6 @@ int wma_scan_event_callback(WMA_HANDLE handle, uint8_t *data,
|
|
|
|
|
|
wma_send_msg(wma_handle, WMA_RX_SCAN_EVENT, (void *)scan_event, 0);
|
|
|
|
|
|
- if ((wmi_event->event & WMA_SCAN_END_EVENT) > 0)
|
|
|
- wma_dec_pending_scans(wma_handle);
|
|
|
-
|
|
|
return 0;
|
|
|
}
|
|
|
|