qcacld-3.0: Fix new misspellings in wlan_cfg80211_tdls.c

The following change introduced new misspellings into
wlan_cfg80211_tdls.c, so fix them.
- Change-Id I3a1a05961bb5e747d946ffa8314319f898ef7b97
  qcacld-3.0: Link params embedded in station param struct

Change-Id: Idf4f214f5e9e4656b241f8de015fc49d64fc4852
CRs-Fixed: 3319365
This commit is contained in:
Jeff Johnson
2022-10-21 18:48:36 -07:00
committed by Madan Koyyalamudi
parent 5e77a89fe6
commit b722a6da29

View File

@@ -449,12 +449,12 @@ wlan_cfg80211_tdls_extract_params(struct wlan_objmgr_vdev *vdev,
params->link_sta_params.supported_rates_len;
/* Note: The Maximum size of supported_rates sent by the Supplicant is
* 32. The supported_rates array , for all the structures propogating
* till Add Sta to the firmware has to be modified , if the supplicant
* 32. The supported_rates array, for all the structures propagating
* until Add Sta to the firmware, has to be modified if the supplicant
* (ieee80211) is modified to send more rates.
*/
/* To avoid Data Currption , set to max length to SIR_MAC_MAX_SUPP_RATES
/* To avoid Data Corruption, set to max length to SIR_MAC_MAX_SUPP_RATES
*/
if (req_info->supported_rates_len > WLAN_MAC_MAX_SUPP_RATES)
req_info->supported_rates_len = WLAN_MAC_MAX_SUPP_RATES;