wlan: Donot strip off the extended capability IE in Assoc Response.

According to WifiDisplay Specification, the GO should respond with
Association response having WFD IE when it receives Association
Request having WFD IE in the frame.

Commit 46bd00c71c9cca1e5c7112a2ec7064da6ace0dd5 strips the WFD IE
from Association Response Frame which contradicts the above
statement. So changes made not to strip the extended IE.

Change-Id: I74cf9473539e41e78adcad94d8a4f1ac78d42012
CRs-fixed: 732959
diff --git a/CORE/MAC/src/pe/lim/limSendManagementFrames.c b/CORE/MAC/src/pe/lim/limSendManagementFrames.c
index 49ade65..bfcec2f 100644
--- a/CORE/MAC/src/pe/lim/limSendManagementFrames.c
+++ b/CORE/MAC/src/pe/lim/limSendManagementFrames.c
@@ -1350,9 +1350,6 @@
     tANI_U32             addnIELen=0;
     tANI_U8              addIE[WNI_CFG_ASSOC_RSP_ADDNIE_DATA_LEN];
     tpSirAssocReq        pAssocReq = NULL; 
-    tANI_U16             addStripoffIELen = 0;
-    tDot11fIEExtCap      extractedExtCap;
-    tANI_BOOLEAN         extractedExtCapFlag = eANI_BOOLEAN_FALSE;
     tANI_U32             nBytes = 0;
 
 #ifdef WLAN_FEATURE_11W
@@ -1547,35 +1544,12 @@
                 if (wlan_cfgGetStr(pMac, WNI_CFG_ASSOC_RSP_ADDNIE_DATA,
                             &addIE[0], &addnIELen) == eSIR_SUCCESS)
                 {
-
-                    vos_mem_set(( tANI_U8* )&extractedExtCap,
-                        sizeof( tDot11fIEExtCap ), 0);
-                    nSirStatus = limStripOffExtCapIEAndUpdateStruct(pMac,
-                                      &addIE[0],
-                                      &addStripoffIELen,
-                                      &extractedExtCap );
-                    if(eSIR_SUCCESS != nSirStatus)
-                    {
-                        limLog(pMac, LOG1,
-                            FL("Unable to Stripoff ExtCap IE from Assoc Rsp"));
-                    }
-                    else
-                    {
-                        addnIELen = addStripoffIELen;
-                        extractedExtCapFlag = eANI_BOOLEAN_TRUE;
-                    }
                     nBytes = nBytes + addnIELen;
                 }
             }
         }
     }
 
-    /* merge the ExtCap struct*/
-    if (extractedExtCapFlag && extractedExtCap.present)
-    {
-        limMergeExtCapIEStruct(&(frm.ExtCap), &extractedExtCap);
-    }
-
     nStatus = dot11fGetPackedAssocResponseSize( pMac, &frm, &nPayload );
     if ( DOT11F_FAILED( nStatus ) )
     {