Переглянути джерело

qcacmn: hal: Fix misspellings

Address the following issues in the hal folder:
CHECK: 'completly' may be misspelled - perhaps 'completely'?
CHECK: 'Initalize' may be misspelled - perhaps 'Initialize'?
CHECK: 'refered' may be misspelled - perhaps 'referred'?
CHECK: 'Retreive' may be misspelled - perhaps 'Retrieve'?
CHECK: 'settting' may be misspelled - perhaps 'setting'?

Change-Id: I98368830eeef7942c20380dbe6c638319a9860d9
CRs-Fixed: 2241575
Jeff Johnson 6 роки тому
батько
коміт
f7aed493b1
3 змінених файлів з 12 додано та 12 видалено
  1. 4 4
      hal/wifi3.0/hal_api.h
  2. 1 1
      hal/wifi3.0/hal_reo.h
  3. 7 7
      hal/wifi3.0/hal_srng.c

+ 4 - 4
hal/wifi3.0/hal_api.h

@@ -114,7 +114,7 @@ static inline uint32_t hal_read32_mb(struct hal_soc *hal_soc, uint32_t offset)
 #include "hif_io32.h"
 
 /**
- * hal_attach - Initalize HAL layer
+ * hal_attach - Initialize HAL layer
  * @hif_handle: Opaque HIF handle
  * @qdf_dev: QDF device
  *
@@ -294,7 +294,7 @@ extern void hal_get_shadow_config(void *hal_soc,
 				  struct pld_shadow_reg_v2_cfg **shadow_config,
 				  int *num_shadow_registers_configured);
 /**
- * hal_srng_setup - Initalize HW SRNG ring.
+ * hal_srng_setup - Initialize HW SRNG ring.
  *
  * @hal_soc: Opaque HAL SOC handle
  * @ring_type: one of the types from hal_ring_type
@@ -1131,7 +1131,7 @@ static inline qdf_dma_addr_t hal_srng_get_tp_addr(void *hal_soc, void *hal_ring)
 }
 
 /**
- * hal_get_srng_params - Retreive SRNG parameters for a given ring from HAL
+ * hal_get_srng_params - Retrieve SRNG parameters for a given ring from HAL
  *
  * @hal_soc: Opaque HAL SOC handle
  * @hal_ring: Ring pointer (Source or Destination ring)
@@ -1141,7 +1141,7 @@ extern void hal_get_srng_params(void *hal_soc, void *hal_ring,
 	struct hal_srng_params *ring_params);
 
 /**
- * hal_mem_info - Retreive hal memory base address
+ * hal_mem_info - Retrieve hal memory base address
  *
  * @hal_soc: Opaque HAL SOC handle
  * @mem: pointer to structure to be updated with hal mem info

+ 1 - 1
hal/wifi3.0/hal_reo.h

@@ -243,7 +243,7 @@ struct hal_reo_cmd_flush_timeout_list_params {
  * @update_bar: Update BAR received bit
  * @update_rty: Update retry bit
  * @update_chk_2k_mode: Update chk_2k_mode setting
- * @update_oor_mode: Update OOR mode settting
+ * @update_oor_mode: Update OOR mode setting
  * @update_ba_window_size: Update BA window size
  * @update_pn_check_needed: Update pn_check_needed
  * @update_pn_even: Update pn_even

+ 7 - 7
hal/wifi3.0/hal_srng.c

@@ -37,8 +37,8 @@
  * The SRNG registers are distributed across various UMAC and LMAC HW blocks,
  * but the register group and format is exactly same for all rings, with some
  * difference between producer rings (these are 'producer rings' with respect
- * to HW and refered as 'destination rings' in SW) and consumer rings (these
- * are 'consumer rings' with respect to HW and refered as 'source rings' in SW).
+ * to HW and referred as 'destination rings' in SW) and consumer rings (these
+ * are 'consumer rings' with respect to HW and referred as 'source rings' in SW).
  * The following macros provide uniform access to all SRNG rings.
  */
 
@@ -715,7 +715,7 @@ static void hal_target_based_configure(struct hal_soc *hal)
 }
 
 /**
- * hal_attach - Initalize HAL layer
+ * hal_attach - Initialize HAL layer
  * @hif_handle: Opaque HIF handle
  * @qdf_dev: QDF device
  *
@@ -786,7 +786,7 @@ fail0:
 qdf_export_symbol(hal_attach);
 
 /**
- * hal_mem_info - Retreive hal memory base address
+ * hal_mem_info - Retrieve hal memory base address
  *
  * @hal_soc: Opaque HAL SOC handle
  * @mem: pointer to structure to be updated with hal mem info
@@ -910,7 +910,7 @@ static inline void hal_srng_src_hw_init(struct hal_soc *hal,
 
 	/* As per HW team, TP_ADDR and HP_ADDR for Idle link ring should
 	 * remain 0 to avoid some WBM stability issues. Remote head/tail
-	 * pointers are not required since this ring is completly managed
+	 * pointers are not required since this ring is completely managed
 	 * by WBM HW */
 	if (srng->ring_id != HAL_SRNG_WBM_IDLE_LINK) {
 		tp_addr = (uint64_t)(hal->shadow_rdptr_mem_paddr +
@@ -1126,7 +1126,7 @@ static inline void hal_srng_hw_init(struct hal_soc *hal,
 #endif
 
 /**
- * hal_srng_setup - Initalize HW SRNG ring.
+ * hal_srng_setup - Initialize HW SRNG ring.
  * @hal_soc: Opaque HAL SOC handle
  * @ring_type: one of the types from hal_ring_type
  * @ring_num: Ring number if there are multiple rings of same type (staring
@@ -1362,7 +1362,7 @@ void hal_srng_dump(struct hal_srng *srng)
 }
 
 /**
- * hal_get_srng_params - Retreive SRNG parameters for a given ring from HAL
+ * hal_get_srng_params - Retrieve SRNG parameters for a given ring from HAL
  *
  * @hal_soc: Opaque HAL SOC handle
  * @hal_ring: Ring pointer (Source or Destination ring)