diff options
| author | Varun Reddy Yeturu <vyeturu@qca.qualcomm.com> | 2014-03-27 12:12:30 -0700 |
|---|---|---|
| committer | Akash Patel <c_akashp@qca.qualcomm.com> | 2014-04-10 07:12:47 -0700 |
| commit | dec464b739086ccfc365c303046cb4ce99cb7e09 (patch) | |
| tree | 7f39ce3ee066555a19a2ec460bb8e668b2e379c0 | |
| parent | 8840fb46f21d9077d3e20fd8bdcb938893d5c7a0 (diff) | |
wlan: API Change to Support RxSensitivity Threshold
Rx Sensitivity Threshold would be calculated based
on the minimum data rate and provided to the firmware.
One of the reserved bytes is being used to pass on
this value. So, the structure size would eventually
remain same.
Change-Id: Ic0739b7b3fd16355dbafbcf05299924f190d90b0
CRs-Fixed: 639900
| -rw-r--r-- | wcnss/inc/wlan_hal_msg.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wcnss/inc/wlan_hal_msg.h b/wcnss/inc/wlan_hal_msg.h index aaae5954ded1..8fa3aa3643d6 100644 --- a/wcnss/inc/wlan_hal_msg.h +++ b/wcnss/inc/wlan_hal_msg.h @@ -118,7 +118,7 @@ typedef tANI_U8 tHalIpv4Addr[4]; #define WLAN_HAL_ROAM_SCAN_MAX_PROBE_SIZE 450 #define WLAN_HAL_ROAM_SCAN_MAX_CHANNELS NUM_RF_CHANNELS -#define WLAN_HAL_ROAM_SCAN_RESERVED_BYTES 57 +#define WLAN_HAL_ROAM_SCAN_RESERVED_BYTES 56 /* Message types for messages exchanged between WDI and HAL */ typedef enum @@ -5618,6 +5618,7 @@ typedef PACKED_PRE struct PACKED_POST { tANI_U8 nProbes; tANI_U16 HomeAwayTime; eAniBoolean MAWCEnabled; + tANI_S8 RxSensitivityThreshold; tANI_U8 ReservedBytes[WLAN_HAL_ROAM_SCAN_RESERVED_BYTES]; tRoamNetworkType ConnectedNetwork; tMobilityDomainInfo MDID; |
