wlan: Avoid locking during channel initialization

Dead lock occurs during channel init based on the country code
configuration in ini if country code is other than 00. Which
causes driver initialization to delay by 3 sec.

Avoid locking, has channel initialization is done during driver
load and before driver makes available the interface for
the upper layer inteeraction.

Change-Id: Iac0808d9aaa796ff60f69cfcf6f2ab0fe83ddf7e
CRs-Fixed: 660808
diff --git a/CORE/SME/src/sme_common/sme_Api.c b/CORE/SME/src/sme_common/sme_Api.c
index 10f4192..bb7c207 100644
--- a/CORE/SME/src/sme_common/sme_Api.c
+++ b/CORE/SME/src/sme_common/sme_Api.c
@@ -5180,12 +5180,8 @@
         return status;
     }
 
-    status = sme_AcquireGlobalLock(&pMac->sme);
-    if (HAL_STATUS_SUCCESS(status))
-    {
-        status = csrInitChannels(pMac);
-        sme_ReleaseGlobalLock(&pMac->sme);
-    }
+    status = csrInitChannels(pMac);
+
     return status;
 }