diff options
| author | Vignesh Viswanathan <viswanat@codeaurora.org> | 2017-09-05 12:39:31 +0530 |
|---|---|---|
| committer | Vignesh Viswanathan <viswanat@codeaurora.org> | 2017-09-05 12:46:33 +0530 |
| commit | a2d9048c873152fca231b9e0620f8e8c6dfe8bda (patch) | |
| tree | 256894120c793b012a9995d01776163495426f96 | |
| parent | aa749e5dd6eb4e0beb4709b6d84b3c82bec56aae (diff) | |
qcacld-3.0: Fix compilation error in wlan_hdd_tdls.h
With the change I3852be0879de5739b3ac5c1f23679ecb340b76be, compilation
error occurred in wlan_hdd_tdls.h when FEATURE_WLAN_TDLS is not
defined
Add changes to fix the compilation error in wlan_hdd_tdls.h
Change-Id: Ic7ef2eed3cb7b2d2d62b9dc501e769cca9a2f647
CRs-Fixed: 2078355
| -rw-r--r-- | core/hdd/inc/wlan_hdd_tdls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/hdd/inc/wlan_hdd_tdls.h b/core/hdd/inc/wlan_hdd_tdls.h index 61d08798aa6c..a8d691795ff8 100644 --- a/core/hdd/inc/wlan_hdd_tdls.h +++ b/core/hdd/inc/wlan_hdd_tdls.h @@ -853,7 +853,7 @@ static inline void hdd_update_tdls_ct_and_teardown_links(hdd_context_t *hdd_ctx) } static inline void wlan_hdd_tdls_disable_offchan_and_teardown_links(hdd_context_t *hddctx, - bool disable_tdls_state); + bool disable_tdls_state) { } static inline void wlan_hdd_tdls_exit(hdd_adapter_t *adapter) |
