qcacld-3.0: Remove csr_is_mcc_supported()

Function csr_is_mcc_supported() is unused, so remove it.

Change-Id: Id0a4196ad502cecd51eb4d8010ce2af0887710a6
CRs-Fixed: 2371136
diff --git a/core/sme/src/csr/csr_inside_api.h b/core/sme/src/csr/csr_inside_api.h
index 20a5c15..6b13247 100644
--- a/core/sme/src/csr/csr_inside_api.h
+++ b/core/sme/src/csr/csr_inside_api.h
@@ -521,7 +521,6 @@
 bool csr_is11h_supported(struct mac_context *mac);
 bool csr_is11e_supported(struct mac_context *mac);
 bool csr_is_wmm_supported(struct mac_context *mac);
-bool csr_is_mcc_supported(struct mac_context *mac);
 
 /* Return SUCCESS is the command is queued, failed */
 QDF_STATUS csr_queue_sme_command(struct mac_context *mac, tSmeCmd *pCommand,
diff --git a/core/sme/src/csr/csr_util.c b/core/sme/src/csr/csr_util.c
index 3826530..303b987 100644
--- a/core/sme/src/csr/csr_util.c
+++ b/core/sme/src/csr/csr_util.c
@@ -1387,12 +1387,6 @@
 	return mac->roam.configParam.Is11eSupportEnabled;
 }
 
-bool csr_is_mcc_supported(struct mac_context *mac)
-{
-	return mac->roam.configParam.fenableMCCMode;
-
-}
-
 bool csr_is_wmm_supported(struct mac_context *mac)
 {
 	if (eCsrRoamWmmNoQos == mac->roam.configParam.WMMSupportMode)