qcacmn: Fix typos in cmn

Fix typos spanned over multiple files in cmn.

Change-Id: I9886114cd9cde934e084d0977e6272f8dd04df76
CRs-Fixed: 3521888
This commit is contained in:
Aditya Kodukula
2023-06-06 17:59:42 -07:00
committed by Rahul Choudhary
parent ee6f5e4069
commit 4cbabdad1c
9 changed files with 13 additions and 13 deletions

View File

@@ -105,7 +105,7 @@ struct dp_ipa_uc_rx_hdr {
* @psoc: control psoc object
* @pdev_id: pdev id
*
* IPA componenet will return the IPA handle based on pdev_id
* IPA component will return the IPA handle based on pdev_id
*
* Return: IPA handle
*/

View File

@@ -311,7 +311,7 @@ struct hal_rx_mon_mpdu_info {
* @msdu_count: msdu count
* @end_of_ppdu: end of ppdu
* @link_desc: msdu link descriptor address
* @status_buf: for a PPDU, status buffers can span acrosss
* @status_buf: for a PPDU, status buffers can span across
* multiple buffers, status_buf points to first
* status buffer address of PPDU
* @drop_ppdu: flag to indicate current destination

View File

@@ -106,7 +106,7 @@ static void hal_tx_set_dscp_tid_map_6432(struct hal_soc *hal_soc, uint8_t *map,
addr += 4;
}
/* Diasble read/write access */
/* Disable read/write access */
regval = HAL_REG_READ(soc, cmn_reg_addr);
regval &=
~(HWIO_TCL_R0_CONS_RING_CMN_CTRL_REG_DSCP_TID_MAP_PROGRAM_EN_BMSK);
@@ -187,7 +187,7 @@ static void hal_tx_update_dscp_tid_6432(struct hal_soc *soc, uint8_t tid,
HWIO_TCL_R0_DSCP_TID_MAP_n_RMSK));
}
/* Diasble read/write access */
/* Disable read/write access */
regval = HAL_REG_READ(soc, cmn_reg_addr);
regval &=
~(HWIO_TCL_R0_CONS_RING_CMN_CTRL_REG_DSCP_TID_MAP_PROGRAM_EN_BMSK);

View File

@@ -430,7 +430,7 @@ struct qca_napi_cpu {
* @exec_map: bit map of instantiated exec contexts
* @user_cpu_affin_mask: CPU affinity mask from INI config.
* @napis:
* @napi_cpu: cpu info for irq affinty
* @napi_cpu: cpu info for irq affinity
* @lilcl_head:
* @bigcl_head:
* @napi_mode: irq affinity & clock voting mode

View File

@@ -525,7 +525,7 @@ void wlan_ipa_uc_rt_debug_host_dump(struct wlan_ipa_priv *ipa_ctx);
/**
* wlan_ipa_uc_rt_debug_destructor() - called by data packet free
* @nbuff: packet pinter
* @nbuff: packet pointer
*
* when free data packet, will be invoked by wlan client and will increase
* free counter

View File

@@ -1279,7 +1279,7 @@ enum qca_wlan_auth_type {
* NL80211_ATTR_STA_INFO
* @QCA_WLAN_VENDOR_ATTR_GET_STATION_INFO_AP_STANDARD_NL80211_ATTR:
* Get the standard NL attributes Nested with this attribute.
* Ex : Query HT/VHT Capability advertized by the AP.
* Ex : Query HT/VHT Capability advertised by the AP.
* NL80211_ATTR_VHT_CAPABILITY / NL80211_ATTR_HT_CAPABILITY
* @QCA_WLAN_VENDOR_ATTR_GET_STATION_INFO_ROAM_COUNT:
* Number of successful Roam attempts before a
@@ -4967,12 +4967,12 @@ enum qca_wlan_vendor_attr_config {
*/
QCA_WLAN_VENDOR_ATTR_CONFIG_RX_MPDU_AGGREGATION = 9,
/*
* 8-bit unsigned value to configure the Non aggregrate/11g sw
* 8-bit unsigned value to configure the Non aggregate/11g sw
* retry threshold (0 disable, 31 max).
*/
QCA_WLAN_VENDOR_ATTR_CONFIG_NON_AGG_RETRY = 10,
/*
* 8-bit unsigned value to configure the aggregrate sw
* 8-bit unsigned value to configure the aggregate sw
* retry threshold (0 disable, 31 max).
*/
QCA_WLAN_VENDOR_ATTR_CONFIG_AGG_RETRY = 11,
@@ -5866,7 +5866,7 @@ enum qca_wlan_vendor_attr_ndp_params {
};
/**
* enum qca_wlan_ndp_sub_cmd - NDP sub comands types for
* enum qca_wlan_ndp_sub_cmd - NDP sub commands types for
* QCA_NL80211_VENDOR_SUBCMD_NDP.
* @QCA_WLAN_VENDOR_ATTR_NDP_INVALID: invalid value
* @QCA_WLAN_VENDOR_ATTR_NDP_INTERFACE_CREATE: Command to create a NAN

View File

@@ -72,7 +72,7 @@
/**
* qdf_ht_add() - add an entry to a qdf_ht instance
* @table: a non-pointer qdf_ht instance to add an entry to
* @entry: pinter to a qdf_ht_entry instance to add to @table
* @entry: pointer to a qdf_ht_entry instance to add to @table
* @key: the key to use for entry insertion and lookup
*
* Return: none

View File

@@ -1343,7 +1343,7 @@ struct qdf_tso_frag_t {
* @syn: syn
* @rst: reset
* @psh: push
* @ack: aknowledge
* @ack: acknowledge
* @urg: urg
* @ece: ece
* @cwr: cwr

View File

@@ -874,7 +874,7 @@ QDF_STATUS reg_dmn_get_6g_opclasses_and_channels(struct wlan_objmgr_pdev *pdev,
op_class_tbl++;
}
/* Calculate total alloction size for the array */
/* Calculate total allocation size for the array */
total_alloc_size = 0;
for (i = 0; i < *num_opclasses; i++)
total_alloc_size += l_chansize_lst[i] * sizeof(uint8_t *);