Forráskód Böngészése

qcacld-3.0: Fix csr_get_parsed_bss_description_ies() context param

Currently csr_get_parsed_bss_description_ies() takes a tHalHandle
context param.  However CSR is an internal module, and hence it should
be using the "real" context pointer type tpAniSirGlobal instead of the
opaque reference tHalhandle, so update the API.

Change-Id: Id10bc9165f942b75ee1bd0e2e9b046ea484976e7
CRs-Fixed: 2255547
Jeff Johnson 6 éve
szülő
commit
d4c61de889
2 módosított fájl, 8 hozzáadás és 7 törlés
  1. 3 2
      core/sme/inc/csr_support.h
  2. 5 5
      core/sme/src/csr/csr_util.c

+ 3 - 2
core/sme/inc/csr_support.h

@@ -318,8 +318,9 @@ QDF_STATUS csr_parse_bss_description_ies(tpAniSirGlobal mac_ctx,
  * Caller must free the memory. after it is done with the data only if
  * this function succeeds
  */
-QDF_STATUS csr_get_parsed_bss_description_ies(tHalHandle hHal,
-		tSirBssDescription *pBssDesc, tDot11fBeaconIEs **ppIEStruct);
+QDF_STATUS csr_get_parsed_bss_description_ies(tpAniSirGlobal mac_ctx,
+					      tSirBssDescription *pBssDesc,
+					      tDot11fBeaconIEs **ppIEStruct);
 
 tSirScanType csr_get_scan_type(tpAniSirGlobal pMac, uint8_t chnId);
 uint8_t csr_to_upper(uint8_t ch);

+ 5 - 5
core/sme/src/csr/csr_util.c

@@ -1634,17 +1634,17 @@ QDF_STATUS csr_parse_bss_description_ies(tpAniSirGlobal mac_ctx,
  * Caller must free the memory after it is done with the data only if
  * this function succeeds
  */
-QDF_STATUS csr_get_parsed_bss_description_ies(tHalHandle hHal,
-					       tSirBssDescription *pBssDesc,
-					       tDot11fBeaconIEs **ppIEStruct)
+QDF_STATUS csr_get_parsed_bss_description_ies(tpAniSirGlobal mac_ctx,
+					      tSirBssDescription *pBssDesc,
+					      tDot11fBeaconIEs **ppIEStruct)
 {
 	QDF_STATUS status = QDF_STATUS_E_INVAL;
 
 	if (pBssDesc && ppIEStruct) {
 		*ppIEStruct = qdf_mem_malloc(sizeof(tDot11fBeaconIEs));
 		if ((*ppIEStruct) != NULL) {
-			status =
-				csr_parse_bss_description_ies(hHal, pBssDesc,
+			status = csr_parse_bss_description_ies(mac_ctx,
+							       pBssDesc,
 							       *ppIEStruct);
 			if (!QDF_IS_STATUS_SUCCESS(status)) {
 				qdf_mem_free(*ppIEStruct);