Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

wifi: ath6kl: Fix spellings

Fix misspelling reported by codespell.

Signed-off-by: Sumanth Gavini <sumanth.gavini@yahoo.com>
Link: https://patch.msgid.link/20250522205701.393612-1-sumanth.gavini@yahoo.com
Signed-off-by: Jeff Johnson <jeff.johnson@oss.qualcomm.com>

authored by

Sumanth Gavini and committed by
Jeff Johnson
cb6dcabd 20870fb0

+20 -20
+1 -1
drivers/net/wireless/ath/ath6kl/core.c
··· 91 91 92 92 /* 93 93 * Turn on power to get hardware (target) version and leave power 94 - * on delibrately as we will boot the hardware anyway within few 94 + * on deliberately as we will boot the hardware anyway within few 95 95 * seconds. 96 96 */ 97 97 ret = ath6kl_hif_power_on(ar);
+1 -1
drivers/net/wireless/ath/ath6kl/hif.c
··· 513 513 out: 514 514 /* 515 515 * An optimization to bypass reading the IRQ status registers 516 - * unecessarily which can re-wake the target, if upper layers 516 + * unnecessarily which can re-wake the target, if upper layers 517 517 * determine that we are in a low-throughput mode, we can rely on 518 518 * taking another interrupt rather than re-checking the status 519 519 * registers which can re-wake the target.
+3 -3
drivers/net/wireless/ath/ath6kl/htc.h
··· 485 485 /* count of credits received via another endpoint */ 486 486 u32 cred_from_ep0; 487 487 488 - /* count of consummed credits */ 488 + /* count of consumed credits */ 489 489 u32 cred_cosumd; 490 490 491 491 /* count of credits returned */ ··· 596 596 /* protects free_ctrl_txbuf and free_ctrl_rxbuf */ 597 597 spinlock_t htc_lock; 598 598 599 - /* FIXME: does this protext rx_bufq and endpoint structures or what? */ 599 + /* FIXME: does this protect rx_bufq and endpoint structures or what? */ 600 600 spinlock_t rx_lock; 601 601 602 602 /* protects endpoint->txq */ ··· 624 624 625 625 int chk_irq_status_cnt; 626 626 627 - /* counts the number of Tx without bundling continously per AC */ 627 + /* counts the number of Tx without bundling continuously per AC */ 628 628 u32 ac_tx_count[WMM_NUM_AC]; 629 629 630 630 struct {
+1 -1
drivers/net/wireless/ath/ath6kl/htc_mbox.c
··· 938 938 939 939 /* 940 940 * if an AC has bundling disabled and no tx bundling 941 - * has occured continously for a certain number of TX, 941 + * has occurred continuously for a certain number of TX, 942 942 * enable tx bundling for this AC 943 943 */ 944 944 if (!bundle_sent) {
+1 -1
drivers/net/wireless/ath/ath6kl/htc_pipe.c
··· 718 718 spin_lock_bh(&target->tx_lock); 719 719 720 720 /* 721 - * interate from the front of tx lookup queue 721 + * iterate from the front of tx lookup queue 722 722 * this lookup should be fast since lower layers completes in-order and 723 723 * so the completed packet should be at the head of the list generally 724 724 */
+2 -2
drivers/net/wireless/ath/ath6kl/init.c
··· 207 207 208 208 /* 209 209 * This configuration item sets the value of disconnect timeout 210 - * Firmware delays sending the disconnec event to the host for this 210 + * Firmware delays sending the disconnect event to the host for this 211 211 * timeout after is gets disconnected from the current AP. 212 212 * If the firmware successly roams within the disconnect timeout 213 213 * it sends a new connect event ··· 221 221 struct sk_buff *skb; 222 222 u16 reserved; 223 223 224 - /* Add chacheline space at front and back of buffer */ 224 + /* Add cacheline space at front and back of buffer */ 225 225 reserved = roundup((2 * L1_CACHE_BYTES) + ATH6KL_DATA_OFFSET + 226 226 sizeof(struct htc_packet) + ATH6KL_HTC_ALIGN_BYTES, 4); 227 227 skb = dev_alloc_skb(size + reserved);
+1 -1
drivers/net/wireless/ath/ath6kl/main.c
··· 583 583 switch (vif->nw_type) { 584 584 case AP_NETWORK: 585 585 /* 586 - * reconfigure any saved RSN IE capabilites in the beacon / 586 + * reconfigure any saved RSN IE capabilities in the beacon / 587 587 * probe response to stay in sync with the supplicant. 588 588 */ 589 589 if (vif->rsn_capab &&
+1 -1
drivers/net/wireless/ath/ath6kl/sdio.c
··· 486 486 ar_sdio = sdio_get_drvdata(func); 487 487 atomic_set(&ar_sdio->irq_handling, 1); 488 488 /* 489 - * Release the host during interrups so we can pick it back up when 489 + * Release the host during interrupts so we can pick it back up when 490 490 * we process commands. 491 491 */ 492 492 sdio_release_host(ar_sdio->func);
+3 -3
drivers/net/wireless/ath/ath6kl/usb.c
··· 93 93 #define ATH6KL_USB_EP_ADDR_APP_DATA_MP_OUT 0x03 94 94 #define ATH6KL_USB_EP_ADDR_APP_DATA_HP_OUT 0x04 95 95 96 - /* diagnostic command defnitions */ 96 + /* diagnostic command definitions */ 97 97 #define ATH6KL_USB_CONTROL_REQ_SEND_BMI_CMD 1 98 98 #define ATH6KL_USB_CONTROL_REQ_RECV_BMI_RESP 2 99 99 #define ATH6KL_USB_CONTROL_REQ_DIAG_CMD 3 ··· 882 882 return -ENOMEM; 883 883 } 884 884 885 - /* note: if successful returns number of bytes transfered */ 885 + /* note: if successful returns number of bytes transferred */ 886 886 ret = usb_control_msg(ar_usb->udev, 887 887 usb_sndctrlpipe(ar_usb->udev, 0), 888 888 req, ··· 914 914 return -ENOMEM; 915 915 } 916 916 917 - /* note: if successful returns number of bytes transfered */ 917 + /* note: if successful returns number of bytes transferred */ 918 918 ret = usb_control_msg(ar_usb->udev, 919 919 usb_rcvctrlpipe(ar_usb->udev, 0), 920 920 req,
+1 -1
drivers/net/wireless/ath/ath6kl/wmi.c
··· 2601 2601 } 2602 2602 2603 2603 /* 2604 - * Indicate activty change to driver layer only if this is the 2604 + * Indicate activity change to driver layer only if this is the 2605 2605 * first TSID to get created in this AC explicitly or an implicit 2606 2606 * fat pipe is getting created. 2607 2607 */
+5 -5
drivers/net/wireless/ath/ath6kl/wmi.h
··· 655 655 656 656 enum wmi_ie_field_type { 657 657 WMI_RSN_IE_CAPB = 0x1, 658 - WMI_IE_FULL = 0xFF, /* indicats full IE */ 658 + WMI_IE_FULL = 0xFF, /* indicates full IE */ 659 659 }; 660 660 661 661 /* WMI_CONNECT_CMDID */ ··· 1178 1178 __le32 sba; 1179 1179 __le32 medium_time; 1180 1180 1181 - /* in octects */ 1181 + /* in octets */ 1182 1182 __le16 nominal_msdu; 1183 1183 1184 - /* in octects */ 1184 + /* in octets */ 1185 1185 __le16 max_msdu; 1186 1186 1187 1187 u8 traffic_class; ··· 1742 1742 1743 1743 /* 1744 1744 * Special frame receive Event. 1745 - * Mechanism used to inform host of the receiption of the special frames. 1745 + * Mechanism used to inform host of the reception of the special frames. 1746 1746 * Consists of special frame info header followed by special frame body. 1747 1747 * The 802.11 header is not included. 1748 1748 */ ··· 1860 1860 /* 1861 1861 * WMI_RSSI_THRESHOLD_EVENTID. 1862 1862 * Indicate the RSSI events to host. Events are indicated when we breach a 1863 - * thresold value. 1863 + * threshold value. 1864 1864 */ 1865 1865 enum wmi_rssi_threshold_val { 1866 1866 WMI_RSSI_THRESHOLD1_ABOVE = 0,