qcacld-3.0: Rename LL_SAP get frequency api

Rename policy_mgr_get_lt_ll_sap_freq to
policy_mgr_get_ll_lt_sap_freq and policy_mgr_get_ht_ll_sap_freq()
to policy_mgr_get_ll_ht_sap_freq()

Change-Id: I740d6dfc75008b36861c8e90d6e365ebc6d8a054
CRs-Fixed: 3637126
This commit is contained in:
Jyoti Kumari
2023-09-29 12:39:31 +05:30
committed by Ravindra Konda
parent 75bfed4d77
commit 0c8dbdb243
2 changed files with 8 additions and 8 deletions

View File

@@ -1887,7 +1887,7 @@ policy_mgr_is_vdev_ll_sap(struct wlan_objmgr_psoc *psoc,
* @vdev_id: vdev id
*
* Based on vdev id ap profile set via vendor command is get and compared with
* ht_ll_type AP type and is return true if profile set is throghput sensitive.
* ll_ht_type AP type and is return true if profile set is throghput sensitive.
*
* Return: true if it's present otherwise false
*/
@@ -5364,7 +5364,7 @@ QDF_STATUS policy_mgr_get_sbs_cfg(struct wlan_objmgr_psoc *psoc, bool *sbs);
qdf_freq_t policy_mgr_get_ll_sap_freq(struct wlan_objmgr_psoc *psoc);
/**
* policy_mgr_get_lt_ll_sap_freq()- Function to get LT LL sap freq if it's
* policy_mgr_get_ll_lt_sap_freq()- Function to get LT LL sap freq if it's
* present
* @psoc: PSOC object
*
@@ -5375,21 +5375,21 @@ qdf_freq_t policy_mgr_get_ll_sap_freq(struct wlan_objmgr_psoc *psoc);
* Return: freq if it's LT LL SAP otherwise 0
*
*/
qdf_freq_t policy_mgr_get_lt_ll_sap_freq(struct wlan_objmgr_psoc *psoc);
qdf_freq_t policy_mgr_get_ll_lt_sap_freq(struct wlan_objmgr_psoc *psoc);
/**
* policy_mgr_get_ht_ll_sap_freq()- Function to get HT LL sap freq if it's
* policy_mgr_get_ll_ht_sap_freq()- Function to get LL HT sap freq if it's
* present
* @psoc: PSOC object
*
* Based on vdev id ap profile set via vendor command is get and compared with
* ht_ll_type AP type and return freq for that SAP if profile set is throghput
* ll_ht_type AP type and return freq for that SAP if profile set is throghput
* sensitive.
*
* Return: freq if it's HT LL SAP otherwise 0
*
*/
qdf_freq_t policy_mgr_get_ht_ll_sap_freq(struct wlan_objmgr_psoc *psoc);
qdf_freq_t policy_mgr_get_ll_ht_sap_freq(struct wlan_objmgr_psoc *psoc);
#ifndef WLAN_FEATURE_LL_LT_SAP
/**

View File

@@ -12246,12 +12246,12 @@ qdf_freq_t policy_mgr_get_ll_sap_freq(struct wlan_objmgr_psoc *psoc)
return _policy_mgr_get_ll_sap_freq(psoc, LL_AP_TYPE_ANY);
}
qdf_freq_t policy_mgr_get_ht_ll_sap_freq(struct wlan_objmgr_psoc *psoc)
qdf_freq_t policy_mgr_get_ll_ht_sap_freq(struct wlan_objmgr_psoc *psoc)
{
return _policy_mgr_get_ll_sap_freq(psoc, LL_AP_TYPE_HT);
}
qdf_freq_t policy_mgr_get_lt_ll_sap_freq(struct wlan_objmgr_psoc *psoc)
qdf_freq_t policy_mgr_get_ll_lt_sap_freq(struct wlan_objmgr_psoc *psoc)
{
return _policy_mgr_get_ll_sap_freq(psoc, LL_AP_TYPE_LT);
}