Browse Source

qcacmn: ipa: Fix misspellings

Fix misspellings in ipa/...

Change-Id: I115ce0ff378e8203cdc2614f1547f5822f5b5eae
CRs-Fixed: 3304689
Jeff Johnson 2 năm trước cách đây
mục cha
commit
b861d604e2

+ 3 - 3
ipa/core/inc/wlan_ipa_core.h

@@ -787,10 +787,10 @@ QDF_STATUS wlan_ipa_wlan_evt(qdf_netdev_t net_dev, uint8_t device_mode,
 int wlan_ipa_uc_smmu_map(bool map, uint32_t num_buf, qdf_mem_info_t *buf_arr);
 
 /**
- * wlan_ipa_is_fw_wdi_activated() - Is FW WDI actived?
- * @ipa_ctx: IPA contex
+ * wlan_ipa_is_fw_wdi_activated() - Is FW WDI activated?
+ * @ipa_ctx: IPA context
  *
- * Return: true if FW WDI actived, false otherwise
+ * Return: true if FW WDI activated, false otherwise
  */
 bool wlan_ipa_is_fw_wdi_activated(struct wlan_ipa_priv *ipa_ctx);
 

+ 2 - 2
ipa/core/inc/wlan_ipa_priv.h

@@ -448,7 +448,7 @@ struct op_msg_type {
  * @txpkts_completed: TX packets completed
  * @tx_is_suspend: TX suspend flag
  * @tx_reserved: Reserved for TX stat
- * @rx_ind_ring_base: RX indication ring base addess
+ * @rx_ind_ring_base: RX indication ring base address
  * @rx_ind_ring_size: RX indication ring size
  * @rx_ind_ring_dbell_addr: RX indication ring doorbell address
  * @rx_ind_ring_dbell_ind_val: RX indication ring doorbell indication
@@ -524,7 +524,7 @@ struct uc_rm_work_struct {
  * struct uc_op_work_struct
  * @work: uC OP work
  * @msg: OP message
- * @osdev: poiner to qdf net device, used by osif_psoc_sync_trans_start_wait
+ * @osdev: pointer to qdf net device, used by osif_psoc_sync_trans_start_wait
  * @ipa_priv_bp: back pointer to ipa_obj
  */
 struct uc_op_work_struct {

+ 3 - 3
ipa/core/src/wlan_ipa_core.c

@@ -887,7 +887,7 @@ wlan_ipa_rx_intrabss_fwd(struct wlan_ipa_priv *ipa_ctx,
 	bool fwd_success;
 	int ret;
 
-	/* legacy intra-bss fowarding for WDI 1.0 and 2.0 */
+	/* legacy intra-bss forwarding for WDI 1.0 and 2.0 */
 	if (ipa_ctx->wdi_version < IPA_WDI_3) {
 		fw_desc = (uint8_t)nbuf->cb[1];
 		return wlan_ipa_intrabss_forward(ipa_ctx, iface_ctx, fw_desc,
@@ -4204,7 +4204,7 @@ static void wlan_ipa_uc_loaded_handler(struct wlan_ipa_priv *ipa_ctx)
 			status);
 		goto connect_pipe_fail;
 	}
-	/* Setup the Tx buffer SMMU mapings */
+	/* Setup the Tx buffer SMMU mappings */
 	status = cdp_ipa_tx_buf_smmu_mapping(ipa_ctx->dp_soc,
 					     ipa_ctx->dp_pdev_id,
 					     __func__, __LINE__);
@@ -4488,7 +4488,7 @@ QDF_STATUS wlan_ipa_uc_ol_init(struct wlan_ipa_priv *ipa_ctx,
 			goto fail_return;
 		}
 
-		/* Setup the Tx buffer SMMU mapings */
+		/* Setup the Tx buffer SMMU mappings */
 		status = cdp_ipa_tx_buf_smmu_mapping(ipa_ctx->dp_soc,
 						     ipa_ctx->dp_pdev_id,
 						     __func__, __LINE__);

+ 1 - 1
ipa/core/src/wlan_ipa_stats.c

@@ -177,7 +177,7 @@ void wlan_ipa_uc_rt_debug_init(struct wlan_ipa_priv *ipa_ctx)
 	ipa_ctx->ipa_rx_internal_drop_count = 0;
 	ipa_ctx->ipa_rx_destructor_count = 0;
 
-	/* Reatime debug enable on feature enable */
+	/* Realtime debug enable on feature enable */
 	if (!wlan_ipa_is_rt_debugging_enabled(ipa_ctx->config)) {
 		ipa_debug("IPA RT debug is not enabled");
 		return;

+ 1 - 1
ipa/dispatcher/inc/cfg_ipa.h

@@ -26,7 +26,7 @@
 
 #include "cfg_define.h"
 
-/* DP INI Declerations */
+/* DP INI Declarations */
 /*
  * IPA Offload configuration - Each bit enables a feature
  * bit0 - IPA Enable

+ 1 - 1
ipa/dispatcher/inc/wlan_ipa_ucfg_api.h

@@ -462,7 +462,7 @@ void ucfg_ipa_flush_pending_vdev_events(struct wlan_objmgr_pdev *pdev,
  * ucfg_ipa_is_wds_enabled() - get IPA AP WDS status
  *
  * IPA driver requires WDS status for adding filter rules
- * to support easymesh feature, IPA expectes wds status
+ * to support easymesh feature, IPA expects wds status
  * with WLAN_IPA_AP_CONNECT event.
  *
  * Return: true - WDS is enabled

+ 2 - 2
ipa/dispatcher/src/wlan_ipa_obj_mgmt_api.c

@@ -90,7 +90,7 @@ ipa_pdev_obj_destroy_notification(struct wlan_objmgr_pdev *pdev,
 						       WLAN_UMAC_COMP_IPA,
 						       ipa_obj);
 	if (QDF_IS_STATUS_ERROR(status))
-		ipa_err("Failed to detatch ipa pdev object");
+		ipa_err("Failed to detach ipa pdev object");
 
 	qdf_mem_free(ipa_obj);
 
@@ -202,7 +202,7 @@ static void ipa_register_ready_cb(void *user_data)
 		goto out;
 	}
 
-	/* Update instace_id for current pdev */
+	/* Update instance_id for current pdev */
 	ipa_obj->instance_id = psoc->soc_objmgr.psoc_id;
 
 	qdf_dev = wlan_psoc_get_qdf_dev(psoc);