Browse Source

qcacld-3.0: Fix misspellings of "available"

Fix misspellings:
availbale ==> available
avaialble ==> available
avilable ==> available

Change-Id: Ibaf369e6baf70508b32f6acdd6aa851c1fc13dca
CRs-Fixed: 3275686
Jeff Johnson 2 years ago
parent
commit
fa3e8441e5

+ 2 - 1
core/hdd/src/wlan_hdd_sysfs_motion_detection.c

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2011-2020 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2022 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
@@ -355,7 +356,7 @@ __hdd_sysfs_mt_start_store(struct net_device *net_dev,
 	}
 
 	if (!adapter->motion_det_cfg) {
-		hdd_err("Motion Detection config values not availbale");
+		hdd_err("Motion Detection config values not available");
 		return -EINVAL;
 	}
 

+ 2 - 2
core/mac/src/pe/lim/lim_process_assoc_req_frame.c

@@ -2209,14 +2209,14 @@ bool lim_send_assoc_ind_to_sme(struct mac_context *mac_ctx,
 
 	if (!peer_idx && !partner_peer_idx) {
 		/* Could not assign AID. Reject association */
-		pe_err("PeerIdx not avaialble. Reject associaton");
+		pe_err("PeerIdx not available. Reject associaton");
 		lim_reject_association(mac_ctx, sa, sub_type,
 				       true, auth_type, peer_idx, false,
 				       STATUS_UNSPECIFIED_FAILURE,
 				       session);
 		return false;
 	} else if (!peer_idx) {
-		pe_err("mlo partner PeerIdx not avaialble. Reject associaton");
+		pe_err("mlo partner PeerIdx not available. Reject associaton");
 		lim_send_sme_max_assoc_exceeded_ntf(mac_ctx, sa,
 						    session->smeSessionId);
 		return false;

+ 2 - 2
core/sme/src/common/sme_api.c

@@ -248,7 +248,7 @@ end:
 	found = csr_nonscan_active_ll_remove_entry(mac, entry,
 			LL_ACCESS_LOCK);
 	if (found)
-		/* Now put this command back on the avilable command list */
+		/* Now put this command back on the available command list */
 		csr_release_command(mac, command);
 
 	return QDF_STATUS_SUCCESS;
@@ -3088,7 +3088,7 @@ static QDF_STATUS sme_process_nss_update_resp(struct mac_context *mac, uint8_t *
 
 	found = csr_nonscan_active_ll_remove_entry(mac, entry, LL_ACCESS_LOCK);
 	if (found) {
-		/* Now put this command back on the avilable command list */
+		/* Now put this command back on the available command list */
 		csr_release_command(mac, command);
 	}