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/inc/wlan_qct_tl.h b/CORE/TL/inc/wlan_qct_tl.h
index 81da974..75df0a2 100644
--- a/CORE/TL/inc/wlan_qct_tl.h
+++ b/CORE/TL/inc/wlan_qct_tl.h
@@ -137,7 +137,7 @@
 
 /* Maximum number of station supported by TL, including BC. */
 #define WLAN_MAX_STA_COUNT  (HAL_NUM_STA)
-
+#define WLAN_NON32_STA_COUNT   14
 /* The symbolic station ID return to HDD to specify the packet is bc/mc */
 #define WLAN_RX_BCMC_STA_ID (WLAN_MAX_STA_COUNT + 1)