wlan: EnableStrictRegulatoryForFCC should be False by default.

Currently at the time of driver loading EnableStrictRegulatoryForFCC
is true. With the new rules of FCC, this param should be FALSE
so that GO/SAP can work on UNII-1 band in FCC domain.

CRs-Fixed: 697408
Change-Id: I5f73a819f6af4a2682402c56d61488b5412ade84
diff --git a/CORE/HDD/src/wlan_hdd_main.c b/CORE/HDD/src/wlan_hdd_main.c
index 16d675d..102a8e2 100644
--- a/CORE/HDD/src/wlan_hdd_main.c
+++ b/CORE/HDD/src/wlan_hdd_main.c
@@ -8450,8 +8450,9 @@
     */
    mutex_init(&pHddCtx->tdls_lock);
 #endif
+   /* By default Strict Regulatory For FCC should be false */
 
-   pHddCtx->nEnableStrictRegulatoryForFCC = TRUE;
+   pHddCtx->nEnableStrictRegulatoryForFCC = FALSE;
    // Load all config first as TL config is needed during vos_open
    pHddCtx->cfg_ini = (hdd_config_t*) kmalloc(sizeof(hdd_config_t), GFP_KERNEL);
    if(pHddCtx->cfg_ini == NULL)