diff --git a/wmi_unified_non_tlv.c b/wmi_unified_non_tlv.c index 15e0daf15b..fea19fa768 100644 --- a/wmi_unified_non_tlv.c +++ b/wmi_unified_non_tlv.c @@ -36,7 +36,7 @@ #include /* pdev_id is used to distinguish the radio for which event - * is recieved. Since non-tlv target has only one radio, setting + * is received. Since non-tlv target has only one radio, setting * default pdev_id to one to keep rest of the code using WMI APIs unfiorm. */ #define WMI_NON_TLV_DEFAULT_PDEV_ID WMI_HOST_PDEV_ID_0 @@ -5741,7 +5741,7 @@ static QDF_STATUS extract_service_ready_non_tlv(wmi_unified_t wmi_handle, cap->max_bcn_ie_size = ev->max_bcn_ie_size; cap->fw_version = ev->sw_version; cap->fw_version_1 = ev->sw_version_1; - /* Following caps not recieved in older fw/hw + /* Following caps not received in older fw/hw * Initialize it as zero(default). */ cap->max_num_scan_channels = 0; cap->max_supported_macs = 0; @@ -6983,7 +6983,7 @@ static QDF_STATUS extract_rtt_hdr_non_tlv(wmi_unified_t wmi_handle, void *evt_bu /** * copy_rtt_report_cfr * @ev: pointer to destination event pointer - * @report_type: report type recieved in event + * @report_type: report type received in event * @p: pointer to event data * @hdump: pointer to destination buffer * @hdump_len: length of dest buffer diff --git a/wmi_unified_tlv.c b/wmi_unified_tlv.c index f96d23c34c..185f5f8ca0 100644 --- a/wmi_unified_tlv.c +++ b/wmi_unified_tlv.c @@ -17647,7 +17647,7 @@ static QDF_STATUS extract_ndp_confirm_tlv(wmi_unified_t wmi_handle, event = (WMI_NDP_CONFIRM_EVENTID_param_tlvs *) data; fixed_params = (wmi_ndp_confirm_event_fixed_param *)event->fixed_param; - WMI_LOGD("WMI_NDP_CONFIRM_EVENTID(0x%X) recieved. vdev %d, ndp_instance %d, rsp_code %d, reason_code: %d, num_active_ndps_on_peer: %d", + WMI_LOGD("WMI_NDP_CONFIRM_EVENTID(0x%X) received. vdev %d, ndp_instance %d, rsp_code %d, reason_code: %d, num_active_ndps_on_peer: %d", WMI_NDP_CONFIRM_EVENTID, fixed_params->vdev_id, fixed_params->ndp_instance_id, fixed_params->rsp_code, fixed_params->reason_code, @@ -17736,7 +17736,7 @@ static QDF_STATUS extract_ndp_end_rsp_tlv(wmi_unified_t wmi_handle, event = (WMI_NDP_END_RSP_EVENTID_param_tlvs *) data; fixed_params = (wmi_ndp_end_rsp_event_fixed_param *)event->fixed_param; - WMI_LOGD("WMI_NDP_END_RSP_EVENTID(0x%X) recieved. transaction_id: %d, rsp_status: %d, reason_code: %d", + WMI_LOGD("WMI_NDP_END_RSP_EVENTID(0x%X) received. transaction_id: %d, rsp_status: %d, reason_code: %d", WMI_NDP_END_RSP_EVENTID, fixed_params->transaction_id, fixed_params->rsp_status, fixed_params->reason_code);