qcacld-3.0: Add QDF status

Replace CDF status with QDF status

Change-Id: I7170c8ae4c5bd97a8f0f383af637bb2ec312f082
CRs-Fixed: 981188
diff --git a/core/mac/src/pe/lim/lim_send_sme_rsp_messages.c b/core/mac/src/pe/lim/lim_send_sme_rsp_messages.c
index f514619..13f86da 100644
--- a/core/mac/src/pe/lim/lim_send_sme_rsp_messages.c
+++ b/core/mac/src/pe/lim/lim_send_sme_rsp_messages.c
@@ -231,7 +231,7 @@
  * Return: None
  */
 static void lim_send_sme_join_reassoc_rsp_after_resume(tpAniSirGlobal mac_ctx,
-	CDF_STATUS status, uint32_t *ctx)
+	QDF_STATUS status, uint32_t *ctx)
 {
 	tSirMsgQ msg;
 	tpSirSmeJoinRsp sme_join_rsp = (tpSirSmeJoinRsp) ctx;
@@ -513,7 +513,7 @@
 	sme_join_rsp->sessionId = sme_session_id;
 	sme_join_rsp->transactionId = sme_transaction_id;
 
-	lim_send_sme_join_reassoc_rsp_after_resume(mac_ctx, CDF_STATUS_SUCCESS,
+	lim_send_sme_join_reassoc_rsp_after_resume(mac_ctx, QDF_STATUS_SUCCESS,
 			(uint32_t *)sme_join_rsp);
 }
 
@@ -854,7 +854,7 @@
 #endif
 
 void lim_send_sme_disassoc_deauth_ntf(tpAniSirGlobal pMac,
-				      CDF_STATUS status, uint32_t *pCtx)
+				      QDF_STATUS status, uint32_t *pCtx)
 {
 	tSirMsgQ mmhMsg;
 	tSirMsgQ *pMsg = (tSirMsgQ *) pCtx;
@@ -1019,7 +1019,7 @@
 	}
 
 	if (false == failure)
-		lim_send_sme_disassoc_deauth_ntf(pMac, CDF_STATUS_SUCCESS,
+		lim_send_sme_disassoc_deauth_ntf(pMac, QDF_STATUS_SUCCESS,
 						 (uint32_t *) pMsg);
 } /*** end lim_send_sme_disassoc_ntf() ***/
 
@@ -1462,7 +1462,7 @@
 		pe_delete_session(pMac, psessionEntry);
 	}
 
-	lim_send_sme_disassoc_deauth_ntf(pMac, CDF_STATUS_SUCCESS,
+	lim_send_sme_disassoc_deauth_ntf(pMac, QDF_STATUS_SUCCESS,
 					 (uint32_t *) pMsg);
 
 } /*** end lim_send_sme_deauth_ntf() ***/
@@ -2489,7 +2489,7 @@
 			pChanSwTxResponse->sessionId =
 				psessionEntry->smeSessionId;
 			pChanSwTxResponse->chanSwIeTxStatus =
-				CDF_STATUS_SUCCESS;
+				QDF_STATUS_SUCCESS;
 
 			mmhMsg.type = eWNI_SME_DFS_CSAIE_TX_COMPLETE_IND;
 			mmhMsg.bodyptr = pChanSwTxResponse;
@@ -2514,7 +2514,7 @@
 					sizeof(*beacon_tx_comp_rsp_ptr), 0);
 		beacon_tx_comp_rsp_ptr->session_id =
 			psessionEntry->smeSessionId;
-		beacon_tx_comp_rsp_ptr->tx_status = CDF_STATUS_SUCCESS;
+		beacon_tx_comp_rsp_ptr->tx_status = QDF_STATUS_SUCCESS;
 		mmhMsg.type = eWNI_SME_NSS_UPDATE_RSP;
 		mmhMsg.bodyptr = beacon_tx_comp_rsp_ptr;
 		mmhMsg.bodyval = 0;