wlan: Fix P2P GO slot time and hence EDCA params incorrect values

As part of slot time sessionization, a bug got introduced which sets the
slot time to long slot and EDCA params to mixed mode 11g instead of pure
11g when P2P GO comes up. This is because we removed the usage of CFG
for slot time and default slot time in CFG was 1 which was getting read
before; The fix is to set it explicitly during start bss based on
phyMode

Change-Id: I4379510c1a1c8a71f77886e370f4762da0cda2a2
CR-Fixed: 412113, 413401, 407176
diff --git a/CORE/MAC/src/pe/lim/limProcessSmeReqMessages.c b/CORE/MAC/src/pe/lim/limProcessSmeReqMessages.c
index 233184e..15cffd5 100644
--- a/CORE/MAC/src/pe/lim/limProcessSmeReqMessages.c
+++ b/CORE/MAC/src/pe/lim/limProcessSmeReqMessages.c
@@ -682,6 +682,7 @@
                  }
                  psessionEntry->ssidHidden = pSmeStartBssReq->ssidHidden;
                  psessionEntry->wps_state = pSmeStartBssReq->wps_state;
+                 psessionEntry->shortSlotTimeSupported = limGetShortSlotFromPhyMode(pMac, psessionEntry, psessionEntry->gLimPhyMode);
                  break;
 #endif
             case eSIR_IBSS_MODE: