/* only accept EAPOL frames */
        HTT_RX_IND_MPDU_STATUS_UNAUTH_PEER,
        HTT_RX_IND_MPDU_STATUS_OUT_OF_SYNC,
-       /* Non-data in promiscous mode */
+       /* Non-data in promiscuous mode */
        HTT_RX_IND_MPDU_STATUS_MGMT_CTRL,
        HTT_RX_IND_MPDU_STATUS_TKIP_MIC_ERR,
        HTT_RX_IND_MPDU_STATUS_DECRYPT_ERR,
  *     Purpose: indicate how many 32-bit integers follow the message header
  *   - NUM_CHARS
  *     Bits 31:16
- *     Purpose: indicate how many 8-bit charaters follow the series of integers
+ *     Purpose: indicate how many 8-bit characters follow the series of integers
  */
 struct htt_rx_test {
        u8 num_ints;
        /* illegal rate phy errors  */
        __le32 illgl_rate_phy_err;
 
-       /* wal pdev continous xretry */
+       /* wal pdev continuous xretry */
        __le32 pdev_cont_xretry;
 
-       /* wal pdev continous xretry */
+       /* wal pdev continuous xretry */
        __le32 pdev_tx_timeout;
 
        /* wal pdev resets  */
 
  *    type.
  *
  * 6. Comment each parameter part of the WMI command/event structure by
- *    using the 2 stars at the begining of C comment instead of one star to
+ *    using the 2 stars at the beginning of C comment instead of one star to
  *    enable HTML document generation using Doxygen.
  *
  */
         * In offload mode target supports features like WOW, chatter and
         * other protocol offloads. In order to support them some
         * functionalities like reorder buffering, PN checking need to be
-        * done in target. This determines maximum number of peers suported
+        * done in target. This determines maximum number of peers supported
         * by target in offload mode
         */
        __le32 num_offload_peers;
         * Max. number of Tx fragments per MSDU
         *  This parameter controls the max number of Tx fragments per MSDU.
         *  This is sent by the target as part of the WMI_SERVICE_READY event
-        *  and is overriden by the OS shim as required.
+        *  and is overridden by the OS shim as required.
         */
        __le32 max_frag_entries;
 } __packed;
         * Max. number of Tx fragments per MSDU
         *  This parameter controls the max number of Tx fragments per MSDU.
         *  This is sent by the target as part of the WMI_SERVICE_READY event
-        *  and is overriden by the OS shim as required.
+        *  and is overridden by the OS shim as required.
         */
        __le32 max_frag_entries;
 } __packed;
        struct wmi_host_mem_chunks mem_chunks;
 } __packed;
 
-/* _10x stucture is from 10.X FW API */
+/* _10x structure is from 10.X FW API */
 struct wmi_init_cmd_10x {
        struct wmi_resource_config_10x resource_config;
        struct wmi_host_mem_chunks mem_chunks;
        /* illegal rate phy errors  */
        __le32 illgl_rate_phy_err;
 
-       /* wal pdev continous xretry */
+       /* wal pdev continuous xretry */
        __le32 pdev_cont_xretry;
 
        /* wal pdev continous xretry */
        __le32 flags;
        /* ssid field. Only valid for AP/GO/IBSS/BTAmp VDEV type. */
        struct wmi_ssid ssid;
-       /* beacon/probe reponse xmit rate. Applicable for SoftAP. */
+       /* beacon/probe response xmit rate. Applicable for SoftAP. */
        __le32 bcn_tx_rate;
-       /* beacon/probe reponse xmit power. Applicable for SoftAP. */
+       /* beacon/probe response xmit power. Applicable for SoftAP. */
        __le32 bcn_tx_power;
        /* number of p2p NOA descriptor(s) from scan entry */
        __le32 num_noa_descriptors;
        WMI_VDEV_PARAM_BEACON_INTERVAL,
        /* Listen interval in TUs */
        WMI_VDEV_PARAM_LISTEN_INTERVAL,
-       /* muticast rate in Mbps */
+       /* multicast rate in Mbps */
        WMI_VDEV_PARAM_MULTICAST_RATE,
        /* management frame rate in Mbps */
        WMI_VDEV_PARAM_MGMT_TX_RATE,
        WMI_10X_VDEV_PARAM_BEACON_INTERVAL,
        /* Listen interval in TUs */
        WMI_10X_VDEV_PARAM_LISTEN_INTERVAL,
-       /* muticast rate in Mbps */
+       /* multicast rate in Mbps */
        WMI_10X_VDEV_PARAM_MULTICAST_RATE,
        /* management frame rate in Mbps */
        WMI_10X_VDEV_PARAM_MGMT_TX_RATE,
 } __packed;
 
 /* VDEV start response status codes */
-/* VDEV succesfully started */
+/* VDEV successfully started */
 #define WMI_INIFIED_VDEV_START_RESPONSE_STATUS_SUCCESS 0x0
 
 /* requested VDEV not found */
 #define WMI_UAPSD_AC_TYPE_TRIG 1
 
 #define WMI_UAPSD_AC_BIT_MASK(ac, type) \
-       ((type ==  WMI_UAPSD_AC_TYPE_DELI) ? (1 << (ac << 1)) : (1 << ((ac << 1) + 1)))
+       (type == WMI_UAPSD_AC_TYPE_DELI ? 1 << (ac << 1) : 1 << ((ac << 1) + 1))
 
 enum wmi_sta_ps_param_uapsd {
        WMI_STA_PS_UAPSD_AC0_DELIVERY_EN = (1 << 0),