diff options
| author | Ashish Kumar Dhanotiya <adhanoti@codeaurora.org> | 2017-03-31 16:35:24 +0530 |
|---|---|---|
| committer | Sandeep Puligilla <spuligil@codeaurora.org> | 2017-04-04 02:26:34 -0700 |
| commit | 520063777b9f670d889c8f1a957e3ece4cdf16e9 (patch) | |
| tree | 306f2bf9263d9ddb089277ac6a7caa668464a396 | |
| parent | b34e53185c62c13d5d3c72468427f49d70eabd76 (diff) | |
qcacld-3.0: Compilation issue while updating the cds config
There is a comparison between constant and boolean inside
update cds config api which will always fail.
To address this issue change the type of variable from boolean to
uint8_t.
Change-Id: I7ba4d9fedd148d713af334b394757da2a496f5a5
CRs-Fixed: 2027402
| -rw-r--r-- | core/hdd/inc/wlan_hdd_cfg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/hdd/inc/wlan_hdd_cfg.h b/core/hdd/inc/wlan_hdd_cfg.h index 33b6de83c919..9c4b22bbb5fe 100644 --- a/core/hdd/inc/wlan_hdd_cfg.h +++ b/core/hdd/inc/wlan_hdd_cfg.h @@ -10859,7 +10859,7 @@ struct hdd_config { uint32_t ibssPs1RxChainInAtimEnable; bool enable_ip_tcp_udp_checksum_offload; - bool enablePowersaveOffload; + uint8_t enablePowersaveOffload; bool enablefwprint; uint8_t enable_fw_log; uint8_t fVhtAmpduLenExponent; |
