qcacld-3.0: Rename pmo_ucfg_* APIs to ucfg_pmo_* APIs

Rename pmo_ucfg_is_ap_mode_supports_arp_ns to ucfg_pmo_*
to match existing naming convention for component ucfg APIs.

Change-Id: I6877e1ebbc8a89d9b2cfb08f7af46e3f3b6606f3
CRs-Fixed: 2135193
This commit is contained in:
Rajeev Kumar
2017-10-30 16:36:57 -07:00
committed by snandini
父節點 a65c57e424
當前提交 029015e2ba
共有 2 個文件被更改,包括 3 次插入3 次删除

查看文件

@@ -34,13 +34,13 @@
#include "wlan_pmo_hw_filter_public_struct.h"
/**
* pmo_ucfg_is_ap_mode_supports_arp_ns() - Check ap mode support arp&ns offload
* ucfg_pmo_is_ap_mode_supports_arp_ns() - Check ap mode support arp&ns offload
* @psoc: objmgr psoc
* @vdev_opmode: vdev opmode
*
* Return: true in case support else false
*/
bool pmo_ucfg_is_ap_mode_supports_arp_ns(struct wlan_objmgr_psoc *psoc,
bool ucfg_pmo_is_ap_mode_supports_arp_ns(struct wlan_objmgr_psoc *psoc,
enum tQDF_ADAPTER_MODE vdev_opmode);
/**

查看文件

@@ -43,7 +43,7 @@ QDF_STATUS pmo_ucfg_update_psoc_config(struct wlan_objmgr_psoc *psoc,
return pmo_core_update_psoc_config(psoc, psoc_cfg);
}
bool pmo_ucfg_is_ap_mode_supports_arp_ns(struct wlan_objmgr_psoc *psoc,
bool ucfg_pmo_is_ap_mode_supports_arp_ns(struct wlan_objmgr_psoc *psoc,
enum tQDF_ADAPTER_MODE vdev_opmode)
{
return pmo_core_is_ap_mode_supports_arp_ns(psoc, vdev_opmode);