qcacmn: Make policy_mgr_set_pcl_for_existing_combo as public API

Make policy_mgr_set_pcl_for_existing_combo as public API
Move policy_mgr_pdev_set_pcl to policy manager internal header file

Change-Id: I6ef45fb34c4bc4bc0c07cad6f546a777922fde9d
CRs-Fixed: 2331254
This commit is contained in:
Varun Reddy Yeturu
2018-10-10 17:21:01 -07:00
committed by nshrivas
parent b9264e89c6
commit b356013b23
2 changed files with 14 additions and 7 deletions

View File

@@ -244,15 +244,14 @@ static inline void policy_mgr_change_sap_channel_with_csa(
#endif
/**
* policy_mgr_pdev_set_pcl() - SET PCL channel list and send to firmware
* policy_mgr_set_pcl_for_existing_combo() - SET PCL for existing combo
* @psoc: PSOC object information
* @mode: Adapter mode
* @mode: Adapter mode
*
* Return: None
*/
void policy_mgr_pdev_set_pcl(struct wlan_objmgr_psoc *psoc,
enum QDF_OPMODE mode);
void policy_mgr_set_pcl_for_existing_combo(struct wlan_objmgr_psoc *psoc,
enum policy_mgr_con_mode mode);
/**
* policy_mgr_incr_active_session() - increments the number of active sessions
* @psoc: PSOC object information

View File

@@ -423,8 +423,16 @@ void policy_mgr_pdev_set_hw_mode_cb(uint32_t status,
enum policy_mgr_conn_update_reason reason,
uint32_t session_id, void *context);
void policy_mgr_dump_current_concurrency(struct wlan_objmgr_psoc *psoc);
void policy_mgr_set_pcl_for_existing_combo(
struct wlan_objmgr_psoc *psoc, enum policy_mgr_con_mode mode);
/**
* policy_mgr_pdev_set_pcl() - SET PCL channel list and send to firmware
* @psoc: PSOC object information
* @mode: Adapter mode
*
* Return: None
*/
void policy_mgr_pdev_set_pcl(struct wlan_objmgr_psoc *psoc,
enum QDF_OPMODE mode);
void pm_dbs_opportunistic_timer_handler(void *data);
enum policy_mgr_con_mode policy_mgr_get_mode(uint8_t type,
uint8_t subtype);