|
@@ -1,6 +1,6 @@
|
|
|
/*
|
|
|
* Copyright (c) 2012-2021 The Linux Foundation. All rights reserved.
|
|
|
- * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
|
+ * Copyright (c) 2021-2024 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
|
|
@@ -620,7 +620,7 @@ lim_fill_ft_session(struct mac_context *mac,
|
|
|
{
|
|
|
uint8_t bss_chan_id;
|
|
|
tSchBeaconStruct *pBeaconStruct;
|
|
|
- ePhyChanBondState cbEnabledMode;
|
|
|
+ uint8_t cb_mode;
|
|
|
QDF_STATUS status = QDF_STATUS_SUCCESS;
|
|
|
|
|
|
pBeaconStruct = qdf_mem_malloc(sizeof(tSchBeaconStruct));
|
|
@@ -702,14 +702,12 @@ lim_fill_ft_session(struct mac_context *mac,
|
|
|
|
|
|
ft_session->nss = ft_session ->vdev_nss;
|
|
|
|
|
|
- if (ft_session->limRFBand == REG_BAND_2G) {
|
|
|
- cbEnabledMode = mac->roam.configParam.channelBondingMode24GHz;
|
|
|
- } else {
|
|
|
- cbEnabledMode = mac->roam.configParam.channelBondingMode5GHz;
|
|
|
- }
|
|
|
+ cb_mode = lim_get_cb_mode_for_freq(mac, ft_session,
|
|
|
+ ft_session->curr_op_freq);
|
|
|
+
|
|
|
ft_session->htSupportedChannelWidthSet =
|
|
|
(pBeaconStruct->HTInfo.present) ?
|
|
|
- (cbEnabledMode && pBeaconStruct->HTInfo.recommendedTxWidthSet &&
|
|
|
+ (cb_mode && pBeaconStruct->HTInfo.recommendedTxWidthSet &&
|
|
|
pBeaconStruct->HTCaps.supportedChannelWidthSet) : 0;
|
|
|
ft_session->htRecommendedTxWidthSet =
|
|
|
ft_session->htSupportedChannelWidthSet;
|