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
Bu işleme şunda yer alıyor:
Jayachandran Sreekumaran
2021-12-13 15:14:55 +05:30
işlemeyi yapan: Madan Koyyalamudi
ebeveyn 5d1783fbc9
işleme b361cf7444
3 değiştirilmiş dosya ile 5 ekleme ve 4 silme

Dosyayı Görüntüle

@@ -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
*/
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
/**

Dosyayı Görüntüle

@@ -557,9 +557,8 @@ void mlme_set_ops_register_cb(mlme_get_global_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_phy_config *phy_config;

Dosyayı Görüntüle

@@ -1,5 +1,6 @@
/*
* 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
* 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)
{
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;
switch (event) {
@@ -1373,7 +1375,7 @@ static bool mlme_vdev_subst_suspend_csa_restart_event(void *ctx,
case WLAN_VDEV_SM_EV_CSA_COMPLETE:
if ((mlme_vdev_is_newchan_no_cac(vdev_mlme) ==
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,
WLAN_VDEV_S_START);
mlme_vdev_sm_deliver_event(vdev_mlme,