wlan: Changes to include uBSP configuration item to the INI file.

This feature doesn't apply to Riva and is meant only for Pronto. Adding
this item as both RIVA and Pronto share same host driver and to maintain
compatibility.

Change-Id: I89004f893a43422cdd44817d77197865012d881e
CR-Fixed: 428109
diff --git a/riva/inc/wlan_hal_cfg.h b/riva/inc/wlan_hal_cfg.h
index 45974d7..72963d5 100644
--- a/riva/inc/wlan_hal_cfg.h
+++ b/riva/inc/wlan_hal_cfg.h
@@ -149,11 +149,13 @@
 #define QWLAN_HAL_CFG_BTC_DHCP_PROT_ON_A2DP              95
 #define QWLAN_HAL_CFG_BTC_DHCP_PROT_ON_SCO               96
 #define QWLAN_HAL_CFG_ENABLE_UNICAST_FILTER              97
-#define QWLAN_HAL_CFG_MAX_PARAMS                         98
+#define QWLAN_HAL_CFG_MAX_ASSOC_LIMIT                    98
+#define QWLAN_HAL_CFG_ENABLE_LPWR_IMG_TRANSITION         99
+#define QWLAN_HAL_CFG_MAX_PARAMS                         100
 
 
 /* Total number of Integer CFGs. This is used while allocating the memory for TLV */
-#define QWLAN_HAL_CFG_INTEGER_PARAM                      94
+#define QWLAN_HAL_CFG_INTEGER_PARAM                      96
 
 
 /*-------------------------------------------------------------------------
@@ -718,6 +720,12 @@
 #define QWLAN_HAL_CFG_ENABLE_UNICAST_FILTER_DEF  0
 
 
+/* QWLAN_HAL_CFG_ENABLE_LPWR_IMG_TRANSITION */
+#define QWLAN_HAL_CFG_ENABLE_LPWR_IMG_TRANSITION_MIN    0
+#define QWLAN_HAL_CFG_ENABLE_LPWR_IMG_TRANSITION_MAX    1
+#define QWLAN_HAL_CFG_ENABLE_LPWR_IMG_TRANSITION_DEF    0
+
+
 typedef struct 
 {
    uint8    cfgStaId[QCOM_WLAN_CFG_STA_ID_LEN]; //QWLAN_HAL_CFG_STA_ID
@@ -819,6 +827,7 @@
    uint32   cfgBtcDhcpProtOnA2dp;             //QWLAN_HAL_CFG_BTC_DHCP_PROT_ON_A2DP
    uint32   cfgBtcDhcpProtOnSco;              //QWLAN_HAL_CFG_BTC_DHCP_PROT_ON_SCO
    uint32   cfgEnableUCFilter;                //QWLAN_HAL_CFG_ENABLE_UNICAST_FILTER     
+   uint32   cfgEnableLpwrImgTransition;       //QWLAN_HAL_CFG_ENABLE_LPWR_IMG_TRANSITION
 }tAniHalCfg, *tpAniHalCfg;
 
 #endif //__WLAN_HAL_CFG_H__