|
@@ -87,16 +87,15 @@ end:
|
|
|
}
|
|
|
|
|
|
static void
|
|
|
-mlo_cleanup_link(struct wlan_objmgr_vdev *tmp_vdev,
|
|
|
- struct wlan_objmgr_vdev *vdev, bool is_legacy)
|
|
|
+mlo_cleanup_link(struct wlan_objmgr_vdev *vdev, bool is_legacy)
|
|
|
{
|
|
|
- if (is_legacy || wlan_vdev_mlme_is_mlo_link_vdev(tmp_vdev))
|
|
|
+ if (is_legacy || wlan_vdev_mlme_is_mlo_link_vdev(vdev))
|
|
|
wlan_vdev_mlme_feat_ext2_cap_clear(vdev, WLAN_VDEV_FEXT2_MLO);
|
|
|
|
|
|
- if (wlan_vdev_mlme_is_mlo_link_vdev(tmp_vdev)) {
|
|
|
- cm_cleanup_mlo_link(tmp_vdev);
|
|
|
- wlan_vdev_mlme_feat_ext2_cap_clear(tmp_vdev,
|
|
|
- WLAN_VDEV_FEXT2_MLO_STA_LINK);
|
|
|
+ if (wlan_vdev_mlme_is_mlo_link_vdev(vdev)) {
|
|
|
+ cm_cleanup_mlo_link(vdev);
|
|
|
+ wlan_vdev_mlme_feat_ext2_cap_clear(vdev,
|
|
|
+ WLAN_VDEV_FEXT2_MLO_STA_LINK);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -125,7 +124,7 @@ mlo_update_for_single_link_roam(struct wlan_objmgr_psoc *psoc,
|
|
|
continue;
|
|
|
|
|
|
tmp_vdev = mlo_dev_ctx->wlan_vdev_list[i];
|
|
|
- mlo_cleanup_link(tmp_vdev, vdev, is_legacy);
|
|
|
+ mlo_cleanup_link(tmp_vdev, is_legacy);
|
|
|
}
|
|
|
|
|
|
end:
|
|
@@ -165,8 +164,7 @@ mlo_update_for_single_link_roam(struct wlan_objmgr_psoc *psoc,
|
|
|
{}
|
|
|
|
|
|
static inline void
|
|
|
-mlo_cleanup_link(struct wlan_objmgr_vdev *tmp_vdev,
|
|
|
- struct wlan_objmgr_vdev *vdev, bool is_legacy)
|
|
|
+mlo_cleanup_link(struct wlan_objmgr_vdev *vdev, bool is_legacy)
|
|
|
{}
|
|
|
|
|
|
static inline void
|