wifi: ath12k: Fix spelling mistakes in warning messages and comments
authorColin Ian King <colin.i.king@gmail.com>
Wed, 15 Feb 2023 18:31:37 +0000 (20:31 +0200)
committerKalle Valo <quic_kvalo@quicinc.com>
Fri, 17 Feb 2023 16:04:29 +0000 (18:04 +0200)
There are quite a few spelling mistakes in warning messages and a lot
of the comments. Fix these.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
Link: https://lore.kernel.org/r/20230214092122.265336-1-colin.i.king@gmail.com
12 files changed:
drivers/net/wireless/ath/ath12k/ce.c
drivers/net/wireless/ath/ath12k/core.h
drivers/net/wireless/ath/ath12k/dp.c
drivers/net/wireless/ath/ath12k/dp.h
drivers/net/wireless/ath/ath12k/dp_mon.c
drivers/net/wireless/ath/ath12k/dp_rx.c
drivers/net/wireless/ath/ath12k/hal.c
drivers/net/wireless/ath/ath12k/hal.h
drivers/net/wireless/ath/ath12k/hal_desc.h
drivers/net/wireless/ath/ath12k/rx_desc.h
drivers/net/wireless/ath/ath12k/wmi.c
drivers/net/wireless/ath/ath12k/wmi.h

index aed6987804bfc37263d111dfe4bb5cfb62ae5636..be0d669d31fcce659ec4cd00b20fef72ef03e459 100644 (file)
@@ -946,7 +946,7 @@ int ath12k_ce_alloc_pipes(struct ath12k_base *ab)
 
                ret = ath12k_ce_alloc_pipe(ab, i);
                if (ret) {
-                       /* Free any parial successful allocation */
+                       /* Free any partial successful allocation */
                        ath12k_ce_free_pipes(ab);
                        return ret;
                }
index a54ae74543c10c55a9c459b2685d44c6d8a2160f..dffa687ee40ef7355bda20e92f785c270908190c 100644 (file)
@@ -691,7 +691,7 @@ struct ath12k_base {
 
        /* Below regd's are protected by ab->data_lock */
        /* This is the regd set for every radio
-        * by the firmware during initializatin
+        * by the firmware during initialization
         */
        struct ieee80211_regdomain *default_regd[MAX_RADIOS];
        /* This regd is set during dynamic country setting
index eb0261500ab0a06e9529841e9dae310ddf39499c..9926d81c5fe45c46f447063c5025532764119b2a 100644 (file)
@@ -1429,7 +1429,7 @@ static int ath12k_dp_cc_init(struct ath12k_base *ab)
                }
 
                if (dp->spt_info[i].paddr & ATH12K_SPT_4K_ALIGN_CHECK) {
-                       ath12k_warn(ab, "SPT allocated memoty is not 4K aligned");
+                       ath12k_warn(ab, "SPT allocated memory is not 4K aligned");
                        ret = -EINVAL;
                        goto free;
                }
index 36a876d7f61d6479671c5edbed7d9f425fb101af..7c5dafce5a68dd00448e37acbc6b481ee4b0e413 100644 (file)
@@ -371,7 +371,7 @@ struct ath12k_dp {
 
 #define HTT_TX_WBM_COMP_STATUS_OFFSET 8
 
-/* HTT tx completion is overlayed in wbm_release_ring */
+/* HTT tx completion is overlaid in wbm_release_ring */
 #define HTT_TX_WBM_COMP_INFO0_STATUS           GENMASK(16, 13)
 #define HTT_TX_WBM_COMP_INFO1_REINJECT_REASON  GENMASK(3, 0)
 #define HTT_TX_WBM_COMP_INFO1_EXCEPTION_FRAME  BIT(4)
@@ -545,7 +545,7 @@ enum htt_srng_ring_id {
  *                     3'b010: 4 usec
  *                     3'b011: 8 usec (default)
  *                     3'b100: 16 usec
- *                     Others: Reserverd
+ *                     Others: Reserved
  *           b'19    - response_required:
  *                     Host needs HTT_T2H_MSG_TYPE_SRING_SETUP_DONE as response
  *           b'20:31 - reserved:  reserved for future use
@@ -1126,7 +1126,7 @@ struct htt_tx_ring_selection_cfg_cmd {
        __le32 tlv_filter_mask_in1;
        __le32 tlv_filter_mask_in2;
        __le32 tlv_filter_mask_in3;
-       __le32 reserverd[3];
+       __le32 reserved[3];
 } __packed;
 
 #define HTT_TX_RING_TLV_FILTER_MGMT_DMA_LEN    GENMASK(3, 0)
index a214797c96a2db330c81548b6d381fa3f886e8b5..4f93e4c95fed24e3f8407d2d042e71271fde5009 100644 (file)
@@ -813,7 +813,7 @@ ath12k_dp_mon_rx_parse_status_tlv(struct ath12k_base *ab,
                spin_unlock_bh(&buf_ring->idr_lock);
 
                if (unlikely(!msdu)) {
-                       ath12k_warn(ab, "montior destination with invalid buf_id %d\n",
+                       ath12k_warn(ab, "monitor destination with invalid buf_id %d\n",
                                    buf_id);
                        return HAL_RX_MON_STATUS_PPDU_NOT_DONE;
                }
@@ -1124,7 +1124,7 @@ static void ath12k_dp_mon_rx_deliver_msdu(struct ath12k *ar, struct napi_struct
 
        /* PN for multicast packets are not validate in HW,
         * so skip 802.3 rx path
-        * Also, fast_rx expectes the STA to be authorized, hence
+        * Also, fast_rx expects the STA to be authorized, hence
         * eapol packets are sent in slow path.
         */
        if (decap == DP_RX_DECAP_TYPE_ETHERNET2_DIX && !is_eapol_tkip &&
@@ -1917,7 +1917,7 @@ ath12k_dp_mon_tx_parse_status_tlv(struct ath12k_base *ab,
                spin_unlock_bh(&buf_ring->idr_lock);
 
                if (unlikely(!msdu)) {
-                       ath12k_warn(ab, "montior destination with invalid buf_id %d\n",
+                       ath12k_warn(ab, "monitor destination with invalid buf_id %d\n",
                                    buf_id);
                        return DP_MON_TX_STATUS_PPDU_NOT_DONE;
                }
@@ -2110,7 +2110,7 @@ int ath12k_dp_mon_srng_process(struct ath12k *ar, int mac_id, int *budget,
                spin_unlock_bh(&buf_ring->idr_lock);
 
                if (unlikely(!skb)) {
-                       ath12k_warn(ab, "montior destination with invalid buf_id %d\n",
+                       ath12k_warn(ab, "monitor destination with invalid buf_id %d\n",
                                    buf_id);
                        goto move_next;
                }
@@ -2511,7 +2511,7 @@ int ath12k_dp_mon_rx_process_stats(struct ath12k *ar, int mac_id,
                spin_unlock_bh(&buf_ring->idr_lock);
 
                if (unlikely(!skb)) {
-                       ath12k_warn(ab, "montior destination with invalid buf_id %d\n",
+                       ath12k_warn(ab, "monitor destination with invalid buf_id %d\n",
                                    buf_id);
                        goto move_next;
                }
index 83a43ad48c512d70ee40c7d5d80e3478c53b23ff..eb67b3409f8585cf9091817a06fcc73420a83073 100644 (file)
@@ -2443,7 +2443,7 @@ static void ath12k_dp_rx_deliver_msdu(struct ath12k *ar, struct napi_struct *nap
 
        /* PN for multicast packets are not validate in HW,
         * so skip 802.3 rx path
-        * Also, fast_rx expectes the STA to be authorized, hence
+        * Also, fast_rx expects the STA to be authorized, hence
         * eapol packets are sent in slow path.
         */
        if (decap == DP_RX_DECAP_TYPE_ETHERNET2_DIX && !is_eapol &&
@@ -2611,7 +2611,7 @@ try_again:
                if (!desc_info) {
                        desc_info = ath12k_dp_get_rx_desc(ab, cookie);
                        if (!desc_info) {
-                               ath12k_warn(ab, "Invalid cookie in manual desc retrival");
+                               ath12k_warn(ab, "Invalid cookie in manual desc retrieval");
                                continue;
                        }
                }
@@ -3297,7 +3297,7 @@ ath12k_dp_process_rx_err_buf(struct ath12k *ar, struct hal_reo_dest_ring *desc,
        if (!desc_info) {
                desc_info = ath12k_dp_get_rx_desc(ab, cookie);
                if (!desc_info) {
-                       ath12k_warn(ab, "Invalid cookie in manual desc retrival");
+                       ath12k_warn(ab, "Invalid cookie in manual desc retrieval");
                        return -EINVAL;
                }
        }
@@ -3718,7 +3718,7 @@ int ath12k_dp_rx_process_wbm_err(struct ath12k_base *ab,
                if (!desc_info) {
                        desc_info = ath12k_dp_get_rx_desc(ab, err_info.cookie);
                        if (!desc_info) {
-                               ath12k_warn(ab, "Invalid cookie in manual desc retrival");
+                               ath12k_warn(ab, "Invalid cookie in manual desc retrieval");
                                continue;
                        }
                }
index 95d04819083fe5e9f2974fa545cc36b3ba57d2f6..0ec53afe9915d267bc7b3090ff1d8359963d1670 100644 (file)
@@ -609,7 +609,7 @@ static int ath12k_hal_srng_create_config_qcn9274(struct ath12k_base *ab)
                HAL_WBM0_RELEASE_RING_BASE_LSB(ab);
        s->reg_size[1] = HAL_WBM1_RELEASE_RING_HP - HAL_WBM0_RELEASE_RING_HP;
 
-       /* Some LMAC rings are not accesed from the host:
+       /* Some LMAC rings are not accessed from the host:
         * RXDMA_BUG, RXDMA_DST, RXDMA_MONITOR_BUF, RXDMA_MONITOR_STATUS,
         * RXDMA_MONITOR_DST, RXDMA_MONITOR_DESC, RXDMA_DIR_BUF_SRC,
         * RXDMA_RX_MONITOR_BUF, TX_MONITOR_BUF, TX_MONITOR_DST, SW2RXDMA
index dfbd8bce70e529b0e495ef8ad7356a38424afad7..0d4fa12ea622ba2c10a792049382394c58bc63b9 100644 (file)
@@ -270,7 +270,7 @@ struct ath12k_base;
 #define HAL_WBM_SW_COOKIE_CONV_CFG_WBM2SW4_EN          BIT(5)
 #define HAL_WBM_SW_COOKIE_CONV_CFG_GLOBAL_EN           BIT(8)
 
-/* TCL ring feild mask and offset */
+/* TCL ring field mask and offset */
 #define HAL_TCL1_RING_BASE_MSB_RING_SIZE               GENMASK(27, 8)
 #define HAL_TCL1_RING_BASE_MSB_RING_BASE_ADDR_MSB      GENMASK(7, 0)
 #define HAL_TCL1_RING_ID_ENTRY_SIZE                    GENMASK(7, 0)
@@ -296,7 +296,7 @@ struct ath12k_base;
 #define HAL_TCL1_RING_FIELD_DSCP_TID_MAP6              GENMASK(20, 18)
 #define HAL_TCL1_RING_FIELD_DSCP_TID_MAP7              GENMASK(23, 21)
 
-/* REO ring feild mask and offset */
+/* REO ring field mask and offset */
 #define HAL_REO1_RING_BASE_MSB_RING_SIZE               GENMASK(27, 8)
 #define HAL_REO1_RING_BASE_MSB_RING_BASE_ADDR_MSB      GENMASK(7, 0)
 #define HAL_REO1_RING_ID_RING_ID                       GENMASK(15, 8)
@@ -738,7 +738,7 @@ struct hal_srng {
        } u;
 };
 
-/* Interrupt mitigation - Batch threshold in terms of numer of frames */
+/* Interrupt mitigation - Batch threshold in terms of number of frames */
 #define HAL_SRNG_INT_BATCH_THRESHOLD_TX 256
 #define HAL_SRNG_INT_BATCH_THRESHOLD_RX 128
 #define HAL_SRNG_INT_BATCH_THRESHOLD_OTHER 1
@@ -813,7 +813,7 @@ enum hal_rx_buf_return_buf_manager {
 #define HAL_REO_CMD_FLG_UNBLK_RESOURCE         BIT(7)
 #define HAL_REO_CMD_FLG_UNBLK_CACHE            BIT(8)
 
-/* Should be matching with HAL_REO_UPD_RX_QUEUE_INFO0_UPD_* feilds */
+/* Should be matching with HAL_REO_UPD_RX_QUEUE_INFO0_UPD_* fields */
 #define HAL_REO_CMD_UPD0_RX_QUEUE_NUM          BIT(8)
 #define HAL_REO_CMD_UPD0_VLD                   BIT(9)
 #define HAL_REO_CMD_UPD0_ALDC                  BIT(10)
@@ -838,7 +838,7 @@ enum hal_rx_buf_return_buf_manager {
 #define HAL_REO_CMD_UPD0_PN_VALID              BIT(29)
 #define HAL_REO_CMD_UPD0_PN                    BIT(30)
 
-/* Should be matching with HAL_REO_UPD_RX_QUEUE_INFO1_* feilds */
+/* Should be matching with HAL_REO_UPD_RX_QUEUE_INFO1_* fields */
 #define HAL_REO_CMD_UPD1_VLD                   BIT(16)
 #define HAL_REO_CMD_UPD1_ALDC                  GENMASK(18, 17)
 #define HAL_REO_CMD_UPD1_DIS_DUP_DETECTION     BIT(19)
@@ -854,7 +854,7 @@ enum hal_rx_buf_return_buf_manager {
 #define HAL_REO_CMD_UPD1_PN_HANDLE_ENABLE      BIT(30)
 #define HAL_REO_CMD_UPD1_IGNORE_AMPDU_FLG      BIT(31)
 
-/* Should be matching with HAL_REO_UPD_RX_QUEUE_INFO2_* feilds */
+/* Should be matching with HAL_REO_UPD_RX_QUEUE_INFO2_* fields */
 #define HAL_REO_CMD_UPD2_SVLD                  BIT(10)
 #define HAL_REO_CMD_UPD2_SSN                   GENMASK(22, 11)
 #define HAL_REO_CMD_UPD2_SEQ_2K_ERR            BIT(23)
index 2250ca2d19a3db1bc6e3ed7b56972ccd8aa09e55..6c17adc6d60b563f5c745a7be6f45c88991333d1 100644 (file)
@@ -706,7 +706,7 @@ struct rx_msdu_desc {
  *
  * msdu_continuation
  *             When set, this MSDU buffer was not able to hold the entire MSDU.
- *             The next buffer will therefor contain additional information
+ *             The next buffer will therefore contain additional information
  *             related to this MSDU.
  *
  * msdu_length
@@ -1294,7 +1294,7 @@ struct hal_tcl_data_cmd {
  *             link descriptor.
  *
  * tcl_cmd_type
- *             used to select the type of TCL Command decriptor
+ *             used to select the type of TCL Command descriptor
  *
  * desc_type
  *             Indicates the type of address provided in the buf_addr_info.
@@ -1408,7 +1408,7 @@ struct hal_tcl_data_cmd {
  * index_loop_override
  *             When set, address search and packet routing is forced to use
  *             'search_index' instead of following the register configuration
- *             seleced by Bank_id.
+ *             selected by Bank_id.
  *
  * ring_id
  *             The buffer pointer ring ID.
@@ -1990,7 +1990,7 @@ struct hal_wbm_release_ring {
  *     Producer: SW/TQM/RXDMA/REO/SWITCH
  *     Consumer: WBM/SW/FW
  *
- * HTT tx status is overlayed on wbm_release ring on 4-byte words 2, 3, 4 and 5
+ * HTT tx status is overlaid on wbm_release ring on 4-byte words 2, 3, 4 and 5
  * for software based completions.
  *
  * buf_addr_info
@@ -2552,7 +2552,7 @@ struct hal_reo_status_hdr {
  *             commands.
  *
  * execution_time (in us)
- *             The amount of time REO took to excecute the command. Note that
+ *             The amount of time REO took to execute the command. Note that
  *             this time does not include the duration of the command waiting
  *             in the command ring, before the execution started.
  *
index 5feaff6450ad202dcd4bd4d89e8977502722773d..f99556a253e56f0186f6407f29c4e4eba8f63e4f 100644 (file)
@@ -1072,7 +1072,7 @@ struct rx_msdu_end_qcn9274 {
  *
  * l4_offset
  *             Depending upon mode bit, this field either indicates the
- *             L4 offset nin bytes from the start of RX_HEADER (only valid
+ *             L4 offset in bytes from the start of RX_HEADER (only valid
  *             if either ipv4_proto or ipv6_proto is set to 1) or indicates
  *             the offset in bytes to the start of TCP or UDP header from
  *             the start of the IP header after decapsulation (Only valid if
index f6df14149531e067f12d763fdc0e2c4ad710dafc..3e6991120e538d5bf2d231c05c2a10501355fed4 100644 (file)
@@ -494,7 +494,7 @@ ath12k_pull_mac_phy_cap_svc_ready_ext(struct ath12k_wmi_pdev *wmi_handle,
 
        /* tx/rx chainmask reported from fw depends on the actual hw chains used,
         * For example, for 4x4 capable macphys, first 4 chains can be used for first
-        * mac and the remaing 4 chains can be used for the second mac or vice-versa.
+        * mac and the remaining 4 chains can be used for the second mac or vice-versa.
         * In this case, tx/rx chainmask 0xf will be advertised for first mac and 0xf0
         * will be advertised for second mac or vice-versa. Compute the shift value
         * for tx/rx chainmask which will be used to advertise supported ht/vht rates to
@@ -1743,7 +1743,7 @@ int ath12k_wmi_vdev_install_key(struct ath12k *ar,
        int ret, len, key_len_aligned;
 
        /* WMI_TAG_ARRAY_BYTE needs to be aligned with 4, the actual key
-        * length is specifed in cmd->key_len.
+        * length is specified in cmd->key_len.
         */
        key_len_aligned = roundup(arg->key_len, 4);
 
@@ -5995,7 +5995,7 @@ static void ath12k_service_available_event(struct ath12k_base *ab, struct sk_buf
        }
 
        /* TODO: Use wmi_service_segment_offset information to get the service
-        * especially when more services are advertised in multiple sevice
+        * especially when more services are advertised in multiple service
         * available events.
         */
        for (i = 0, j = WMI_MAX_SERVICE;
index 84e3fb918e43fbcecfbb7b5ef2b56a14661dcf57..08a8c9e0f59fbde74c627f44bf33d560d71b97f0 100644 (file)
@@ -4002,7 +4002,7 @@ struct ath12k_wmi_pdev_radar_event {
 } __packed;
 
 struct wmi_pdev_temperature_event {
-       /* temperature value in Celcius degree */
+       /* temperature value in Celsius degree */
        a_sle32 temp;
        __le32 pdev_id;
 } __packed;
@@ -4192,7 +4192,7 @@ enum wmi_sta_ps_param_tx_wake_threshold {
  */
 enum wmi_sta_ps_param_pspoll_count {
        WMI_STA_PS_PSPOLL_COUNT_NO_MAX = 0,
-       /* Values greater than 0 indicate the maximum numer of PS-Poll frames
+       /* Values greater than 0 indicate the maximum number of PS-Poll frames
         * FW will send before waking up.
         */
 };