qcacld-3.0: Pass correct param to csr_scan_get_result()

In sme_scan_get_result() when calling csr_scan_get_result() a
tHalHandle is currently being passed as the context parameter.
csr_scan_get_result() is expecting a tpAniSirGlobal so pass the
correct parameter.

Change-Id: I6b704f4e1074b15cfbe86a539ac2dee60789e9e0
CRs-Fixed: 2268183
diff --git a/core/sme/src/common/sme_api.c b/core/sme/src/common/sme_api.c
index 4c326b8..504571e 100644
--- a/core/sme/src/common/sme_api.c
+++ b/core/sme/src/common/sme_api.c
@@ -2597,7 +2597,7 @@
 			 0));
 	status = sme_acquire_global_lock(&pMac->sme);
 	if (QDF_IS_STATUS_SUCCESS(status)) {
-		status = csr_scan_get_result(hHal, pFilter, phResult);
+		status = csr_scan_get_result(pMac, pFilter, phResult);
 		sme_release_global_lock(&pMac->sme);
 	}