qcacmn: Fix misspelling "recevied"
Multiple instances of the misspelling "recevied" are present, so replace them with the correct spelling "received." Change-Id: Ibd7f4a136541be8aa98f5bee4db7f75af0271f53 CRs-Fixed: 3273526
This commit is contained in:

committed by
Madan Koyyalamudi

parent
3a7048480c
commit
88c15dadbb
@@ -2075,7 +2075,7 @@ struct cdp_tx_indication_info {
|
||||
/**
|
||||
* struct cdp_tx_mgmt_comp_info - Tx mgmt comp info
|
||||
* @ppdu_id: ppdu_id
|
||||
* @is_sgen_pkt: payload recevied from wmi or htt path
|
||||
* @is_sgen_pkt: payload received from wmi or htt path
|
||||
* @retries_count: retries count
|
||||
* @tx_tsf: 64 bit timestamp
|
||||
*/
|
||||
|
@@ -329,10 +329,10 @@ struct dp_tx_mon_downstream_tlv_config {
|
||||
* rx_frame_bitmap_ack: RX_FRAME_BITMAP_ACK TLV
|
||||
* rx_frame_1k_bitmap_ack: RX_FRAME_1K_BITMAP_ACK TLV
|
||||
* coex_tx_status: COEX_TX_STATUS TLV
|
||||
* recevied_response_info: RECEIVED_RESPONSE_INFO TLV
|
||||
* recevied_response_info_p2: RECEIVED_RESPONSE_INFO_PART2 TLV
|
||||
* received_response_info: RECEIVED_RESPONSE_INFO TLV
|
||||
* received_response_info_p2: RECEIVED_RESPONSE_INFO_PART2 TLV
|
||||
* ofdma_trigger_details: OFDMA_TRIGGER_DETAILS
|
||||
* recevied_trigger_info: RECEIVED_TRIGGER_INFO
|
||||
* received_trigger_info: RECEIVED_TRIGGER_INFO
|
||||
* pdg_tx_request: PDG_TX_REQUEST
|
||||
* pdg_response: PDG_RESPONSE
|
||||
* pdg_trig_response: PDG_TRIG_RESPONSE
|
||||
@@ -417,10 +417,10 @@ struct dp_tx_mon_upstream_tlv_config {
|
||||
rx_frame_bitmap_ack:1,
|
||||
rx_frame_1k_bitmap_ack:1,
|
||||
coex_tx_status:1,
|
||||
recevied_response_info:1,
|
||||
recevied_response_info_p2:1,
|
||||
received_response_info:1,
|
||||
received_response_info_p2:1,
|
||||
ofdma_trigger_details:1,
|
||||
recevied_trigger_info:1,
|
||||
received_trigger_info:1,
|
||||
pdg_tx_request:1,
|
||||
pdg_response:1,
|
||||
pdg_trig_response:1,
|
||||
|
@@ -3642,7 +3642,7 @@ QDF_STATUS dp_rx_tid_setup_wifi3(struct dp_peer *peer, int tid,
|
||||
|
||||
/* TODO: Allocating HW queue descriptors based on max BA window size
|
||||
* for all QOS TIDs so that same descriptor can be used later when
|
||||
* ADDBA request is recevied. This should be changed to allocate HW
|
||||
* ADDBA request is received. This should be changed to allocate HW
|
||||
* queue descriptors based on BA window size being negotiated (0 for
|
||||
* non BA cases), and reallocate when BA window size changes and also
|
||||
* send WMI message to FW to change the REO queue descriptor in Rx
|
||||
|
@@ -584,25 +584,25 @@ htt_tx_tlv_filter_mask_set_in1(uint32_t *msg_word,
|
||||
COEX_TX_STATUS,
|
||||
tlv->coex_tx_status);
|
||||
|
||||
if (tlv->recevied_response_info)
|
||||
if (tlv->received_response_info)
|
||||
htt_tx_monitor_tlv_filter_in1_enable_set(*msg_word,
|
||||
RECEIVED_RESPONSE_INFO,
|
||||
tlv->recevied_response_info);
|
||||
tlv->received_response_info);
|
||||
|
||||
if (tlv->recevied_response_info_p2)
|
||||
if (tlv->received_response_info_p2)
|
||||
htt_tx_monitor_tlv_filter_in1_enable_set(*msg_word,
|
||||
RECEIVED_RESPONSE_INFO_PART2,
|
||||
tlv->recevied_response_info_p2);
|
||||
tlv->received_response_info_p2);
|
||||
|
||||
if (tlv->ofdma_trigger_details)
|
||||
htt_tx_monitor_tlv_filter_in1_enable_set(*msg_word,
|
||||
OFDMA_TRIGGER_DETAILS,
|
||||
tlv->ofdma_trigger_details);
|
||||
|
||||
if (tlv->recevied_trigger_info)
|
||||
if (tlv->received_trigger_info)
|
||||
htt_tx_monitor_tlv_filter_in1_enable_set(*msg_word,
|
||||
RECEIVED_TRIGGER_INFO,
|
||||
tlv->recevied_trigger_info);
|
||||
tlv->received_trigger_info);
|
||||
|
||||
if (tlv->pdg_tx_request)
|
||||
htt_tx_monitor_tlv_filter_in1_enable_set(*msg_word,
|
||||
@@ -1784,14 +1784,14 @@ static void dp_tx_mon_filter_show_filter(struct dp_mon_filter_be *filter)
|
||||
tlv_filter->utlvs.rx_frame_1k_bitmap_ack);
|
||||
DP_MON_FILTER_PRINT("coex_tx_status: %d",
|
||||
tlv_filter->utlvs.coex_tx_status);
|
||||
DP_MON_FILTER_PRINT("recevied_response_info: %d",
|
||||
tlv_filter->utlvs.recevied_response_info);
|
||||
DP_MON_FILTER_PRINT("recevied_response_info_p2: %d",
|
||||
tlv_filter->utlvs.recevied_response_info_p2);
|
||||
DP_MON_FILTER_PRINT("received_response_info: %d",
|
||||
tlv_filter->utlvs.received_response_info);
|
||||
DP_MON_FILTER_PRINT("received_response_info_p2: %d",
|
||||
tlv_filter->utlvs.received_response_info_p2);
|
||||
DP_MON_FILTER_PRINT("ofdma_trigger_details: %d",
|
||||
tlv_filter->utlvs.ofdma_trigger_details);
|
||||
DP_MON_FILTER_PRINT("recevied_trigger_info: %d",
|
||||
tlv_filter->utlvs.recevied_trigger_info);
|
||||
DP_MON_FILTER_PRINT("received_trigger_info: %d",
|
||||
tlv_filter->utlvs.received_trigger_info);
|
||||
DP_MON_FILTER_PRINT("pdg_tx_request: %d",
|
||||
tlv_filter->utlvs.pdg_tx_request);
|
||||
DP_MON_FILTER_PRINT("pdg_response: %d",
|
||||
@@ -2239,8 +2239,8 @@ void dp_mon_filter_setup_pktlog_hybrid_2_0(struct dp_pdev *pdev)
|
||||
tlv_filter->utlvs.tx_fes_status_user_response = 1;
|
||||
tlv_filter->utlvs.tx_fes_status_end = 1;
|
||||
tlv_filter->utlvs.response_start_status = 1;
|
||||
tlv_filter->utlvs.recevied_response_info = 1;
|
||||
tlv_filter->utlvs.recevied_response_info_p2 = 1;
|
||||
tlv_filter->utlvs.received_response_info = 1;
|
||||
tlv_filter->utlvs.received_response_info_p2 = 1;
|
||||
tlv_filter->utlvs.response_end_status = 1;
|
||||
|
||||
dp_mon_filter_show_tx_filter_be(mode, &filter);
|
||||
@@ -2594,14 +2594,14 @@ void dp_tx_mon_upstream_tlv_set(struct htt_tx_ring_tlv_filter *dst_filter,
|
||||
src_filter->utlvs.rx_frame_1k_bitmap_ack;
|
||||
dst_filter->utlvs.coex_tx_status |=
|
||||
src_filter->utlvs.coex_tx_status;
|
||||
dst_filter->utlvs.recevied_response_info |=
|
||||
src_filter->utlvs.recevied_response_info;
|
||||
dst_filter->utlvs.recevied_response_info_p2 |=
|
||||
src_filter->utlvs.recevied_response_info_p2;
|
||||
dst_filter->utlvs.received_response_info |=
|
||||
src_filter->utlvs.received_response_info;
|
||||
dst_filter->utlvs.received_response_info_p2 |=
|
||||
src_filter->utlvs.received_response_info_p2;
|
||||
dst_filter->utlvs.ofdma_trigger_details |=
|
||||
src_filter->utlvs.ofdma_trigger_details;
|
||||
dst_filter->utlvs.recevied_trigger_info |=
|
||||
src_filter->utlvs.recevied_trigger_info;
|
||||
dst_filter->utlvs.received_trigger_info |=
|
||||
src_filter->utlvs.received_trigger_info;
|
||||
dst_filter->utlvs.pdg_tx_request |=
|
||||
src_filter->utlvs.pdg_tx_request;
|
||||
dst_filter->utlvs.pdg_response |=
|
||||
|
@@ -154,7 +154,7 @@ void hal_reo_qdesc_setup_be(hal_soc_handle_t hal_soc_hdl, int tid,
|
||||
|
||||
/* TODO: HW queue descriptors are currently allocated for max BA
|
||||
* window size for all QOS TIDs so that same descriptor can be used
|
||||
* later when ADDBA request is recevied. This should be changed to
|
||||
* later when ADDBA request is received. This should be changed to
|
||||
* allocate HW queue descriptors based on BA window size being
|
||||
* negotiated (0 for non BA cases), and reallocate when BA window
|
||||
* size changes and also send WMI message to FW to change the REO
|
||||
|
@@ -151,7 +151,7 @@ void hal_reo_qdesc_setup_li(hal_soc_handle_t hal_soc_hdl, int tid,
|
||||
|
||||
/* TODO: HW queue descriptors are currently allocated for max BA
|
||||
* window size for all QOS TIDs so that same descriptor can be used
|
||||
* later when ADDBA request is recevied. This should be changed to
|
||||
* later when ADDBA request is received. This should be changed to
|
||||
* allocate HW queue descriptors based on BA window size being
|
||||
* negotiated (0 for non BA cases), and reallocate when BA window
|
||||
* size changes and also send WMI message to FW to change the REO
|
||||
|
@@ -1,6 +1,7 @@
|
||||
/*
|
||||
* Copyright (c) 2021 The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
|
||||
* Copyright (c) 2021-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
|
||||
* copyright notice and this permission notice appear in all copies.
|
||||
@@ -124,7 +125,7 @@ struct bmiss_infra_cp_stats_event {
|
||||
#endif /* CONFIG_WLAN_BMISS */
|
||||
/**
|
||||
* struct infra_cp_stats_event - Event structure to store stats
|
||||
* @action: action for which this response was recevied
|
||||
* @action: action for which this response was received
|
||||
* (get/reset/start/stop)
|
||||
* @request_id: request cookie sent to Firmware in the command
|
||||
* @status: status of the infra_cp_stats command processing
|
||||
|
@@ -1,5 +1,6 @@
|
||||
/*
|
||||
* Copyright (c) 2013-2021 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
|
||||
@@ -4282,7 +4283,7 @@ int cnss_diag_deactivate_service(void)
|
||||
/**
|
||||
* brief cnss_diag_msg_callback() - Call back invoked by netlink service
|
||||
*
|
||||
* This function gets invoked by netlink service when a message is recevied
|
||||
* This function gets invoked by netlink service when a message is received
|
||||
* from the cnss-diag application in user-space.
|
||||
*
|
||||
* param -
|
||||
|
Reference in New Issue
Block a user