qcacld-3.0: Replace SIR_MAC_ACTION_* with converged enum ACTION_SPCT_*

Replace SIR_MAC_ACTION_* with converged enum ACTION_SPCT_*.

Change-Id: I76cc3d7ea8e12b9a40f39ba855a73e2779896fea
CRs-Fixed: 2460915
diff --git a/core/mac/src/pe/lim/lim_send_management_frames.c b/core/mac/src/pe/lim/lim_send_management_frames.c
index ce3e3af..fadf4cf 100644
--- a/core/mac/src/pe/lim/lim_send_management_frames.c
+++ b/core/mac/src/pe/lim/lim_send_management_frames.c
@@ -3320,7 +3320,7 @@
 	qdf_mem_zero((uint8_t *) &frm, sizeof(frm));
 
 	frm.Category.category = ACTION_CATEGORY_SPECTRUM_MGMT;
-	frm.Action.action = SIR_MAC_ACTION_MEASURE_REPORT_ID;
+	frm.Action.action = ACTION_SPCT_MSR_RPRT;
 	frm.DialogToken.token = pMeasReqFrame->actionHeader.dialogToken;
 
 	switch (pMeasReqFrame->measReqIE.measType) {
@@ -3446,7 +3446,7 @@
 	qdf_mem_zero((uint8_t *) &frm, sizeof(frm));
 
 	frm.Category.category = ACTION_CATEGORY_SPECTRUM_MGMT;
-	frm.Action.action = SIR_MAC_ACTION_TPC_REPORT_ID;
+	frm.Action.action = ACTION_SPCT_TPC_RPRT;
 	frm.DialogToken.token = pTpcReqFrame->actionHeader.dialogToken;
 
 	frm.TPCReport.tx_power = 0;
@@ -3568,7 +3568,7 @@
 	qdf_mem_zero((uint8_t *) &frm, sizeof(frm));
 
 	frm.Category.category = ACTION_CATEGORY_SPECTRUM_MGMT;
-	frm.Action.action = SIR_MAC_ACTION_CHANNEL_SWITCH_ID;
+	frm.Action.action = ACTION_SPCT_CHL_SWITCH;
 	frm.ChanSwitchAnn.switchMode = nMode;
 	frm.ChanSwitchAnn.newChannel = nNewChannel;
 	frm.ChanSwitchAnn.switchCount = nCount;