Browse Source

qcacld-3.0: Fix misspelling of 'specific'

Fix misspelling 'specfic' => 'specific'

Change-Id: Idc4f5ec0d23a36ab98cfea84647bd38f4eace3a8
CRs-Fixed: 2241933
Jeff Johnson 7 years ago
parent
commit
179fd8ae0e

+ 1 - 1
core/mac/inc/sir_api.h

@@ -791,7 +791,7 @@ typedef struct sSirSmeStartBssRsp {
 	tSirResultCodes statusCode;
 	tSirBssType bssType;    /* Add new type for WDS mode */
 	uint16_t beaconInterval;        /* Beacon Interval for both type */
-	uint32_t staId;         /* Staion ID for Self */
+	uint32_t staId;         /* Station ID for Self */
 #ifdef FEATURE_WLAN_MCC_TO_SCC_SWITCH
 	tSirSmeHTProfile HTProfile;
 #endif

+ 6 - 6
core/mac/src/pe/lim/lim_assoc_utils.c

@@ -3758,7 +3758,7 @@ tSirRetStatus lim_sta_send_add_bss(tpAniSirGlobal pMac, tpSirAssocRsp pAssocRsp,
 			pAssocRsp->vendor_vht_ie.VHTCaps.present){
 		pAddBssParams->vhtCapable =
 			pAssocRsp->vendor_vht_ie.VHTCaps.present;
-		pe_debug("VHT Caps and Operation are present in vendor Specfic IE");
+		pe_debug("VHT Caps and Operation are present in vendor Specific IE");
 		vht_caps = &pAssocRsp->vendor_vht_ie.VHTCaps;
 		vht_oper = &pAssocRsp->vendor_vht_ie.VHTOperation;
 	} else {
@@ -3851,7 +3851,7 @@ tSirRetStatus lim_sta_send_add_bss(tpAniSirGlobal pMac, tpSirAssocRsp pAssocRsp,
 				vht_caps = &pAssocRsp->VHTCaps;
 			else if (pAssocRsp->vendor_vht_ie.VHTCaps.present) {
 				vht_caps = &pAssocRsp->vendor_vht_ie.VHTCaps;
-				pe_debug("VHT Caps are in vendor Specfic IE");
+				pe_debug("VHT Caps are in vendor Specific IE");
 				is_vht_cap_in_vendor_ie = true;
 			}
 
@@ -3890,7 +3890,7 @@ tSirRetStatus lim_sta_send_add_bss(tpAniSirGlobal pMac, tpSirAssocRsp pAssocRsp,
 			else if (pAssocRsp->vendor_vht_ie.VHTCaps.present) {
 				vht_oper = &pAssocRsp->
 						vendor_vht_ie.VHTOperation;
-				pe_debug("VHT Op IE is in vendor Specfic IE");
+				pe_debug("VHT Op IE is in vendor Specific IE");
 			}
 			/*
 			 * in limExtractApCapability function intersection of FW
@@ -3972,7 +3972,7 @@ tSirRetStatus lim_sta_send_add_bss(tpAniSirGlobal pMac, tpSirAssocRsp pAssocRsp,
 				vht_caps = &pAssocRsp->VHTCaps;
 			else if (pAssocRsp->vendor_vht_ie.VHTCaps.present) {
 				vht_caps = &pAssocRsp->vendor_vht_ie.VHTCaps;
-				pe_debug("VHT Caps is in vendor Specfic IE");
+				pe_debug("VHT Caps is in vendor Specific IE");
 			}
 			if (vht_caps != NULL &&
 				(psessionEntry->txLdpcIniFeatureEnabled & 0x2)) {
@@ -4314,7 +4314,7 @@ tSirRetStatus lim_sta_send_add_bss_pre_assoc(tpAniSirGlobal pMac, uint8_t update
 			vht_oper = &pBeaconStruct->VHTOperation;
 		else if (pBeaconStruct->vendor_vht_ie.VHTOperation.present) {
 			vht_oper = &pBeaconStruct->vendor_vht_ie.VHTOperation;
-			pe_debug("VHT Operation is present in vendor Specfic IE");
+			pe_debug("VHT Operation is present in vendor Specific IE");
 		}
 
 
@@ -4488,7 +4488,7 @@ tSirRetStatus lim_sta_send_add_bss_pre_assoc(tpAniSirGlobal pMac, uint8_t update
 			else if (pBeaconStruct->vendor_vht_ie.VHTCaps.present) {
 				vht_caps =
 					&pBeaconStruct->vendor_vht_ie.VHTCaps;
-				pe_debug("VHT Caps are in vendor Specfic IE");
+				pe_debug("VHT Caps are in vendor Specific IE");
 			}
 			if (vht_caps != NULL &&
 				(psessionEntry->txLdpcIniFeatureEnabled & 0x2))

+ 1 - 1
core/mac/src/pe/lim/lim_process_sme_req_messages.c

@@ -1371,7 +1371,7 @@ __lim_process_sme_join_req(tpAniSirGlobal mac_ctx, uint32_t *msg_buf)
 		session->enable_bcast_probe_rsp =
 				sme_join_req->enable_bcast_probe_rsp;
 
-		/* Store vendor specfic IE for CISCO AP */
+		/* Store vendor specific IE for CISCO AP */
 		ie_len = (bss_desc->length + sizeof(bss_desc->length) -
 			 GET_FIELD_OFFSET(tSirBssDescription, ieFields));
 

+ 1 - 1
core/mac/src/sys/legacy/src/utils/src/parser_api.c

@@ -1949,7 +1949,7 @@ void populate_dot11f_wmm_info_ap(tpAniSirGlobal pMac, tDot11fIEWMMInfoAp *pInfo,
 	pInfo->version = SIR_MAC_OUI_VERSION_1;
 
 	/* WMM Specification 3.1.3, 3.2.3
-	 * An IBSS staion shall always use its default WMM parameters.
+	 * An IBSS station shall always use its default WMM parameters.
 	 */
 	if (LIM_IS_IBSS_ROLE(psessionEntry)) {
 		pInfo->param_set_count = 0;