浏览代码

qcacld-3.0: components: dp: Fix Misspellings

Fix misspellings in components/dp/...

Change-Id: I7c2edc87e8c2efd9dbdaa4a93297f35c2cb972b8
CRs-Fixed: 3303645
Jeff Johnson 2 年之前
父节点
当前提交
5daf948dfe

+ 2 - 2
components/dp/core/inc/wlan_dp_main.h

@@ -46,7 +46,7 @@ void dp_free_ctx(void);
 
 /**
  * dp_get_front_intf_no_lock() - Get the first interface from the intf list
- * This API doesnot use any lock in it's implementation. It is the caller's
+ * This API does not use any lock in it's implementation. It is the caller's
  * directive to ensure concurrency safety.
  * @dp_ctx: pointer to the DP context
  * @out_intf: double pointer to pass the next interface
@@ -59,7 +59,7 @@ dp_get_front_intf_no_lock(struct wlan_dp_psoc_context *dp_ctx,
 
 /**
  * dp_get_next_intf_no_lock() - Get the next intf from the intf list
- * This API doesnot use any lock in it's implementation. It is the caller's
+ * This API does not use any lock in it's implementation. It is the caller's
  * directive to ensure concurrency safety.
  * @dp_ctx: pointer to the DP context
  * @cur_intf: pointer to the current intf

+ 1 - 1
components/dp/core/inc/wlan_dp_txrx.h

@@ -613,7 +613,7 @@ void wlan_dp_pkt_add_timestamp(struct wlan_dp_intf *dp_intf,
 #if defined(FEATURE_LRO)
 /**
  * dp_lro_set_reset() - API for Disable/Enable LRO
- * @dp_intf: DP inerface pointer
+ * @dp_intf: DP interface pointer
  * @enable_flag: enable or disable LRO.
  *
  * Return: 0 on success and non zero on failure.

+ 2 - 2
components/dp/core/src/wlan_dp_bus_bandwidth.c

@@ -45,7 +45,7 @@
 #ifdef FEATURE_BUS_BANDWIDTH_MGR
 /**
  * bus_bw_table_default - default table which provides bus bandwidth level
- *  corresonding to a given connection mode and throughput level.
+ *  corresponding to a given connection mode and throughput level.
  */
 static bus_bw_table_type bus_bw_table_default = {
 	[QCA_WLAN_802_11_MODE_11B] = {BUS_BW_LEVEL_NONE, BUS_BW_LEVEL_1,
@@ -80,7 +80,7 @@ static bus_bw_table_type bus_bw_table_default = {
 
 /**
  * bus_bw_table_low_latency - table which provides bus bandwidth level
- *  corresonding to a given connection mode and throughput level in low
+ *  corresponding to a given connection mode and throughput level in low
  *  latency setting.
  */
 static bus_bw_table_type bus_bw_table_low_latency = {

+ 1 - 1
components/dp/core/src/wlan_dp_fisa_rx.c

@@ -450,7 +450,7 @@ dp_rx_fisa_setup_cmem_fse(struct dp_rx_fst *fisa_hdl, uint32_t hashed_flow_idx,
 
 /**
  * dp_rx_fisa_update_sw_ft_entry() - Helper function to update few SW FT entry
- * @sw_ft_entry: Pointer to softerware flow tabel entry
+ * @sw_ft_entry: Pointer to softerware flow table entry
  * @flow_hash: flow_hash for the flow
  * @vdev: Saving dp_vdev in FT later used in the flushing the flow
  * @flow_id: Flow ID of the flow

+ 7 - 7
components/dp/core/src/wlan_dp_main.c

@@ -450,7 +450,7 @@ static void dp_ini_tcp_settings(struct wlan_dp_psoc_cfg *config,
 #ifdef CONFIG_DP_TRACE
 /**
  * dp_trace_cfg_update() - initialize DP Trace config
- * @config : Configuration paramerts
+ * @config : Configuration parameters
  * @psoc: psoc handle
  */
 static void
@@ -476,7 +476,7 @@ dp_trace_cfg_update(struct wlan_dp_psoc_cfg *config,
 #ifdef WLAN_NUD_TRACKING
 /**
  * dp_nud_tracking_cfg_update() - initialize NUD Tracking config
- * @config : Configuration paramerts
+ * @config : Configuration parameters
  * @psoc: psoc handle
  */
 static void
@@ -496,7 +496,7 @@ dp_nud_tracking_cfg_update(struct wlan_dp_psoc_cfg *config,
 #ifdef QCA_SUPPORT_TXRX_DRIVER_TCP_DEL_ACK
 /**
  * dp_ini_tcp_del_ack_settings() - initialize TCP delack config
- * @config : Configuration paramerts
+ * @config : Configuration parameters
  * @psoc: psoc handle
  */
 static void dp_ini_tcp_del_ack_settings(struct wlan_dp_psoc_cfg *config,
@@ -523,7 +523,7 @@ static void dp_ini_tcp_del_ack_settings(struct wlan_dp_psoc_cfg *config,
 #ifdef WLAN_SUPPORT_TXRX_HL_BUNDLE
 /**
  * dp_hl_bundle_cfg_update() - initialize TxRx HL bundle config
- * @config : Configuration paramerts
+ * @config : Configuration parameters
  * @psoc: psoc handle
  */
 static void dp_hl_bundle_cfg_update(struct wlan_dp_psoc_cfg *config,
@@ -751,7 +751,7 @@ dp_rx_mic_error_ind(struct cdp_ctrl_objmgr_psoc *psoc, uint8_t pdev_id,
 	}
 	/*
 	 * Store mic error info pointer in dp_intf
-	 * for freeing up the alocated memory in case
+	 * for freeing up the allocated memory in case
 	 * the work scheduled below is flushed or deinitialized.
 	 */
 	dp_intf->mic_work.status = DP_MIC_SCHEDULED;
@@ -851,8 +851,8 @@ dp_peer_obj_create_notification(struct wlan_objmgr_peer *peer, void *arg)
 	sta_info->dhcp_phase = DHCP_PHASE_ACK;
 	sta_info->dhcp_nego_status = DHCP_NEGO_STOP;
 
-	dp_info("sta info crated mac:" QDF_MAC_ADDR_FMT,
-		       QDF_MAC_ADDR_REF(&sta_info->sta_mac));
+	dp_info("sta info created mac:" QDF_MAC_ADDR_FMT,
+		QDF_MAC_ADDR_REF(&sta_info->sta_mac));
 
 	return status;
 }

+ 1 - 1
components/dp/core/src/wlan_dp_softap_txrx.c

@@ -48,7 +48,7 @@
 
 /* Type declarations */
 
-/* Function definitions and documenation */
+/* Function definitions and documentation */
 #ifdef QCA_DP_SAP_DUMP_SK_BUFF
 /**
  * dp_softap_dump_nbuf() - Dump an nbuf

+ 1 - 1
components/dp/core/src/wlan_dp_txrx.c

@@ -143,7 +143,7 @@ static int dp_intf_is_tx_allowed(qdf_nbuf_t nbuf,
  * name or not
  *
  * @nbuf: Network buffer pointer
- * @dp_intf: DP interface poniter
+ * @dp_intf: DP interface pointer
  *
  * Returns: true if matches else false
  */

+ 1 - 1
components/dp/dispatcher/inc/wlan_dp_cfg.h

@@ -992,7 +992,7 @@
  * <ini>
  *
  * Enable/disable DPTRACE
- * Enabling this might have performace impact.
+ * Enabling this might have performance impact.
  *
  * Config DPTRACE
  * The sequence of params is important. If some param is missing, defaults are

+ 2 - 2
components/dp/dispatcher/inc/wlan_dp_public_struct.h

@@ -16,7 +16,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 /**
- * DOC: Contains DP public data structure definations.
+ * DOC: Contains DP public data structure definitions.
  *
  */
 
@@ -721,7 +721,7 @@ struct wlan_dp_user_config {
 };
 
 /**
- * struct dp_traffic_end_indication - Trafic end indication
+ * struct dp_traffic_end_indication - Traffic end indication
  * @enabled: Feature enabled/disabled config
  * @def_dscp: Default DSCP value in regular packets in traffic
  * @spl_dscp: Special DSCP value to be used by packet to mark

+ 1 - 1
components/dp/dispatcher/inc/wlan_dp_ucfg_api.h

@@ -54,7 +54,7 @@ ucfg_dp_is_roam_after_nud_enabled(struct wlan_objmgr_psoc *psoc)
 /**
  * ucfg_dp_create_intf() - update DP interface MAC address
  * @psoc: psoc handle
- * @cur_mac: Curent MAC address
+ * @cur_mac: Current MAC address
  * @new_mac: new MAC address
  *
  */

+ 2 - 2
components/dp/dispatcher/src/wlan_dp_ucfg_api.c

@@ -312,7 +312,7 @@ QDF_STATUS ucfg_dp_deinit(void)
 }
 
 /**
- * ucfg_dp_suspend_handler() - suspend handler regsitered with PMO component
+ * ucfg_dp_suspend_handler() - suspend handler registered with PMO component
  * @psoc: psoc handle
  * @arg: Arguments passed by the suspend handler.
  *
@@ -342,7 +342,7 @@ ucfg_dp_suspend_handler(struct wlan_objmgr_psoc *psoc, void *arg)
 }
 
 /**
- * ucfg_dp_resume_handler() - resume handler regsitered with PMO component
+ * ucfg_dp_resume_handler() - resume handler registered with PMO component
  * @psoc: psoc handle
  * @arg: Arguments passed by the resume handler.
  *