Browse Source

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
Jeff Johnson 2 years ago
parent
commit
b722a6da29
1 changed files with 4 additions and 4 deletions
  1. 4 4
      os_if/tdls/src/wlan_cfg80211_tdls.c

+ 4 - 4
os_if/tdls/src/wlan_cfg80211_tdls.c

@@ -448,13 +448,13 @@ wlan_cfg80211_tdls_extract_params(struct wlan_objmgr_vdev *vdev,
 	req_info->supported_rates_len =
 				params->link_sta_params.supported_rates_len;
 
-	/* Note : The Maximum sizeof 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
+	/* Note: The Maximum size of supported_rates sent by the Supplicant is
+	 * 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;