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

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

Change-Id: I9fba71ee5d5cf6428f043c7d7782ef585951e059
CRs-Fixed: 2140474
This commit is contained in:
Rajeev Kumar
2017-11-08 14:54:22 -08:00
committed by snandini
parent 8472cb885f
commit d1a7ac420b
3 changed files with 7 additions and 7 deletions

View File

@@ -60,17 +60,17 @@ bool ucfg_pmo_is_vdev_connected(struct wlan_objmgr_vdev *vdev);
bool pmo_ucfg_is_vdev_supports_offload(struct wlan_objmgr_vdev *vdev);
/**
* pmo_ucfg_get_psoc_config(): API to get the psoc user configurations of pmo
* ucfg_pmo_get_psoc_config(): API to get the psoc user configurations of pmo
* @psoc: objmgr psoc handle
* @psoc_cfg: fill the current psoc user configurations.
*
* Return pmo psoc configurations
*/
QDF_STATUS pmo_ucfg_get_psoc_config(struct wlan_objmgr_psoc *psoc,
QDF_STATUS ucfg_pmo_get_psoc_config(struct wlan_objmgr_psoc *psoc,
struct pmo_psoc_cfg *psoc_cfg);
/**
* pmo_ucfg_update_psoc_config(): API to update the psoc user configurations
* ucfg_pmo_update_psoc_config(): API to update the psoc user configurations
* @psoc: objmgr psoc handle
* @psoc_cfg: pmo psoc configurations
*
@@ -80,7 +80,7 @@ QDF_STATUS pmo_ucfg_get_psoc_config(struct wlan_objmgr_psoc *psoc,
*
* Return QDF_STATUS -in case of success else return error
*/
QDF_STATUS pmo_ucfg_update_psoc_config(struct wlan_objmgr_psoc *psoc,
QDF_STATUS ucfg_pmo_update_psoc_config(struct wlan_objmgr_psoc *psoc,
struct pmo_psoc_cfg *psoc_cfg);
/**