diff options
| author | Linux Build Service Account <lnxbuild@localhost> | 2019-03-29 05:22:08 -0700 |
|---|---|---|
| committer | Linux Build Service Account <lnxbuild@localhost> | 2019-03-29 05:22:08 -0700 |
| commit | 00ad42a92dcaec314779da9973bb58e932809cca (patch) | |
| tree | 49dbb4ef81f2ae1f2436181a54de0251cb26aec1 /wmi/src/wmi_unified_api.c | |
| parent | 12d9d27285a05443b7f9d6cb5bca9102066b091f (diff) | |
| parent | f149fbd7a0931a6453b5f327f4c91f4aa28a91e7 (diff) | |
Merge f149fbd7a0931a6453b5f327f4c91f4aa28a91e7 on remote branch
Change-Id: Ib81891aeb2d9301d7fcb1a2481b61a197c50ed01
Diffstat (limited to 'wmi/src/wmi_unified_api.c')
| -rw-r--r-- | wmi/src/wmi_unified_api.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/wmi/src/wmi_unified_api.c b/wmi/src/wmi_unified_api.c index c2494eaf5365..44abdd757163 100644 --- a/wmi/src/wmi_unified_api.c +++ b/wmi/src/wmi_unified_api.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016-2018 The Linux Foundation. All rights reserved. + * Copyright (c) 2016-2019 The Linux Foundation. All rights reserved. * * Permission to use, copy, modify, and/or distribute this software for * any purpose with or without fee is hereby granted, provided that the @@ -6586,3 +6586,15 @@ wmi_extract_roam_scan_stats_res_evt(wmi_unified_t wmi, void *evt_buf, return QDF_STATUS_E_FAILURE; } + +QDF_STATUS wmi_unified_send_btm_config(void *wmi_hdl, + struct wmi_btm_config *params) +{ + wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl; + + if (wmi_handle->ops->send_btm_config) + return wmi_handle->ops->send_btm_config(wmi_handle, + params); + + return QDF_STATUS_E_FAILURE; +} |
