qcacmn: Function parameter update for mlme_max_chan_switch_is_set

Update the function parameter for mlme_max_chan_switch_is_set.

Change-Id: I0585e328b670f37cb0cd1eb1371ad63b1df1c5f0
CRs-Fixed: 3095312
This commit is contained in:
Jayachandran Sreekumaran
2021-12-13 15:14:55 +05:30
committed by Madan Koyyalamudi
parent 5d1783fbc9
commit b361cf7444
3 changed files with 5 additions and 4 deletions

View File

@@ -758,7 +758,7 @@ void mlme_set_osif_cm_cb(osif_cm_get_global_ops_cb cm_osif_ops);
* *
* Return: True if max chan switch is enabled else false * Return: True if max chan switch is enabled else false
*/ */
bool mlme_max_chan_switch_is_set(struct wlan_objmgr_vdev *vdev); bool mlme_max_chan_switch_is_set(struct wlan_objmgr_psoc *psoc);
#ifdef WLAN_FEATURE_DYNAMIC_MAC_ADDR_UPDATE #ifdef WLAN_FEATURE_DYNAMIC_MAC_ADDR_UPDATE
/** /**

View File

@@ -557,9 +557,8 @@ void mlme_set_ops_register_cb(mlme_get_global_ops_cb ops_cb)
glbl_ops_cb = ops_cb; glbl_ops_cb = ops_cb;
} }
bool mlme_max_chan_switch_is_set(struct wlan_objmgr_vdev *vdev) bool mlme_max_chan_switch_is_set(struct wlan_objmgr_psoc *psoc)
{ {
struct wlan_objmgr_psoc *psoc = wlan_vdev_get_psoc(vdev);
struct psoc_mlme_obj *mlme_psoc_obj; struct psoc_mlme_obj *mlme_psoc_obj;
struct psoc_phy_config *phy_config; struct psoc_phy_config *phy_config;

View File

@@ -1,5 +1,6 @@
/* /*
* Copyright (c) 2018-2021 The Linux Foundation. All rights reserved. * Copyright (c) 2018-2021 The Linux Foundation. All rights reserved.
* Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
* *
* Permission to use, copy, modify, and/or distribute this software for any * Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above * purpose with or without fee is hereby granted, provided that the above
@@ -1349,6 +1350,7 @@ static bool mlme_vdev_subst_suspend_csa_restart_event(void *ctx,
uint16_t event, uint16_t event_data_len, void *event_data) uint16_t event, uint16_t event_data_len, void *event_data)
{ {
struct vdev_mlme_obj *vdev_mlme = (struct vdev_mlme_obj *)ctx; struct vdev_mlme_obj *vdev_mlme = (struct vdev_mlme_obj *)ctx;
struct wlan_objmgr_psoc *psoc = wlan_vdev_get_psoc(vdev_mlme->vdev);
bool status; bool status;
switch (event) { switch (event) {
@@ -1373,7 +1375,7 @@ static bool mlme_vdev_subst_suspend_csa_restart_event(void *ctx,
case WLAN_VDEV_SM_EV_CSA_COMPLETE: case WLAN_VDEV_SM_EV_CSA_COMPLETE:
if ((mlme_vdev_is_newchan_no_cac(vdev_mlme) == if ((mlme_vdev_is_newchan_no_cac(vdev_mlme) ==
QDF_STATUS_SUCCESS) || QDF_STATUS_SUCCESS) ||
mlme_max_chan_switch_is_set(vdev_mlme->vdev)) { mlme_max_chan_switch_is_set(psoc)) {
mlme_vdev_sm_transition_to(vdev_mlme, mlme_vdev_sm_transition_to(vdev_mlme,
WLAN_VDEV_S_START); WLAN_VDEV_S_START);
mlme_vdev_sm_deliver_event(vdev_mlme, mlme_vdev_sm_deliver_event(vdev_mlme,