wlan: Submit api/inc files in rel/2.0

Add AP LINK MONITOR TIMEOUT to change the frequency of KEEP ALIVE
packets sent during the KEEP ALIVE TIMEOUT duration for SAP and GO.
It is used to change the frequency of keep alive packets in the AP
Link Monitor period which is by default 20s. The keep alive packets
are sent as an interval of 3s which can be changed by setting
gApLinkMonitorPeriod in ini file.
diff --git a/riva/inc/wlan_hal_cfg.h b/riva/inc/wlan_hal_cfg.h
index e262976..1e8a25e 100644
--- a/riva/inc/wlan_hal_cfg.h
+++ b/riva/inc/wlan_hal_cfg.h
@@ -172,11 +172,12 @@
 #define QWLAN_HAL_CFG_MAX_ASSOC_LIMIT                    98
 #define QWLAN_HAL_CFG_ENABLE_LPWR_IMG_TRANSITION         99
 #define QWLAN_HAL_CFG_ENABLE_MCC_ADAPTIVE_SCHEDULER     100
-#define QWLAN_HAL_CFG_MAX_PARAMS                        101
+#define QWLAN_HAL_CFG_AP_LINK_MONITOR_TIMEOUT           102
+#define QWLAN_HAL_CFG_MAX_PARAMS                        103
 
 
 /* Total number of Integer CFGs. This is used while allocating the memory for TLV */
-#define QWLAN_HAL_CFG_INTEGER_PARAM                      97
+#define QWLAN_HAL_CFG_INTEGER_PARAM                      98
 
 
 /*-------------------------------------------------------------------------
@@ -755,6 +756,11 @@
 #define QWLAN_HAL_CFG_ENABLE_MCC_ADAPTIVE_SCHEDULER_MAX    1
 #define QWLAN_HAL_CFG_ENABLE_MCC_ADAPTIVE_SCHEDULER_DEF    0
 
+/* QWLAN_HAL_CFG_AP_LINK_MONITOR_TIMEOUT */
+#define QWLAN_HAL_CFG_AP_LINK_MONITOR_TIMEOUT_MIN  1
+#define QWLAN_HAL_CFG_AP_LINK_MONITOR_TIMEOUT_MAX  255
+#define QWLAN_HAL_CFG_AP_LINK_MONITOR_TIMEOUT_DEF  3
+
 #endif //__WLAN_HAL_CFG_H__