wlan: TL module fix for memory consumption in WLANTLC_CBType module.

Changed the WLANTL_STAClientType to a pointer of WLAN_MAX_STA_COUNT STAs
instead of an array.Memory is allocated dynamically for WLAN_NON32_STA_COUNT
at initialization and thereafter on per STA basis.

Change-Id: I51b4544ba0e7b9f058d53e1be5960c0475142f43
CRs-fixed: 439754
diff --git a/CORE/TL/src/wlan_qct_tli.h b/CORE/TL/src/wlan_qct_tli.h
index 1f0bc7b..f8874a2 100644
--- a/CORE/TL/src/wlan_qct_tli.h
+++ b/CORE/TL/src/wlan_qct_tli.h
@@ -39,8 +39,6 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/*
- * */
 #ifndef WLAN_QCT_TLI_H
 #define WLAN_QCT_TLI_H
 
@@ -743,7 +741,8 @@
   WLANTL_ConfigInfoType     tlConfigInfo;
 
   /* list of the active stations */
-  WLANTL_STAClientType      *atlSTAClients; /*Allocate memory [WLAN_MAX_STA_COUNT] of station */
+  WLANTL_STAClientType*      atlSTAClients[WLAN_MAX_STA_COUNT];
+
 
   /* information on the management frame client */
   WLANTL_MgmtFrmClientType  tlMgmtFrmClient;