qca-wifi: Add support to send LCR WMI command to FW

Add support to send LCR command to FW for 'wlanconfig athx rtt lcr <Country
code string> <civic info>' command.

Change-Id: Ib23d36006f0349c50b22852d6269e5cb203af01a
CRs-Fixed: 2832179
This commit is contained in:
Shashikala Prabhu
2020-12-07 17:26:18 +05:30
parent 25c5596047
commit 28182b4a66
3 changed files with 79 additions and 0 deletions

View File

@@ -24,6 +24,7 @@
#define _WMI_UNIFIED_AP_API_H_
#include "wmi_unified_param.h"
#include <wmi_unified_ap_params.h>
/**
* wmi_unified_beacon_send_cmd() - WMI beacon send function
@@ -770,4 +771,13 @@ QDF_STATUS wmi_unified_set_radio_tx_mode_select_cmd_send(
wmi_unified_t wmi_handle,
struct wmi_pdev_enable_tx_mode_selection *tx_mode_select_param);
/**
* wmi_unified_send_lcr_cmd() - Send LCR command to FW
* @wmi_handle: WMI handle
* @lcr_info: Pointer to LCR structure
*
* Return: QDF_STATUS_SUCCESS if success, else returns proper error code.
*/
QDF_STATUS wmi_unified_send_lcr_cmd(wmi_unified_t wmi_handle,
struct wmi_wifi_pos_lcr_info *lcr_info);
#endif /* _WMI_UNIFIED_AP_API_H_ */