wlan: Consider Short Preamble and Immediate Block Ack peer capability

In the current code, the short preamble and immediate block ack
capabilities of the peer are not considered while sending the
association request i.e., for example, even if the AP does not
support short preamble, the STA sends short preamble as supported in
the association request. This is causing interoperability issues with
3COM AP. This is fixed in this gerrit by considering the capability
of the AP w.r.t short preamble and immediate block ack before
sending the association request

CRs-Fixed: 686472
Change-Id: I9370e8c641a1f3bd4f93ceb0207cb41e42e2489e
diff --git a/CORE/MAC/src/pe/lim/limUtils.h b/CORE/MAC/src/pe/lim/limUtils.h
index 2c01c4d..f2c95cc 100644
--- a/CORE/MAC/src/pe/lim/limUtils.h
+++ b/CORE/MAC/src/pe/lim/limUtils.h
@@ -55,6 +55,8 @@
 #define LIM_AID_MASK                              0xC000
 #define LIM_SPECTRUM_MANAGEMENT_BIT_MASK          0x0100
 #define LIM_RRM_BIT_MASK                          0x1000
+#define LIM_SHORT_PREAMBLE_BIT_MASK               0x0020
+#define LIM_IMMEDIATE_BLOCK_ACK_MASK              0x8000
 #if  defined (WLAN_FEATURE_VOWIFI_11R) || defined (FEATURE_WLAN_ESE) || defined(FEATURE_WLAN_LFR)
 #define LIM_MAX_REASSOC_RETRY_LIMIT            2
 #endif