ath10k: fix a bunch of spelling mistakes in messages
authorColin Ian King <colin.king@canonical.com>
Sun, 25 Jun 2017 21:29:32 +0000 (22:29 +0100)
committerKalle Valo <kvalo@qca.qualcomm.com>
Wed, 28 Jun 2017 16:55:44 +0000 (19:55 +0300)
Fix the following spelling mistakes in messages:
  syncronise -> synchronize
  unusally -> unusually
  addrress -> address
  inverval -> interval

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
drivers/net/wireless/ath/ath10k/mac.c
drivers/net/wireless/ath/ath10k/pci.c
drivers/net/wireless/ath/ath10k/sdio.c
drivers/net/wireless/ath/ath10k/wmi-tlv.c

index 4a71815..55c808f 100644 (file)
@@ -1392,7 +1392,7 @@ static int ath10k_vdev_stop(struct ath10k_vif *arvif)
 
        ret = ath10k_vdev_setup_sync(ar);
        if (ret) {
-               ath10k_warn(ar, "failed to syncronise setup for vdev %i: %d\n",
+               ath10k_warn(ar, "failed to synchronize setup for vdev %i: %d\n",
                            arvif->vdev_id, ret);
                return ret;
        }
index 4f3f513..7ebfc40 100644 (file)
@@ -469,7 +469,7 @@ static int ath10k_pci_wake_wait(struct ath10k *ar)
        while (tot_delay < PCIE_WAKE_TIMEOUT) {
                if (ath10k_pci_is_awake(ar)) {
                        if (tot_delay > PCIE_WAKE_LATE_US)
-                               ath10k_warn(ar, "device wakeup took %d ms which is unusally long, otherwise it works normally.\n",
+                               ath10k_warn(ar, "device wakeup took %d ms which is unusually long, otherwise it works normally.\n",
                                            tot_delay / 1000);
                        return 0;
                }
index 9e78fba..859ed87 100644 (file)
@@ -1553,7 +1553,7 @@ static int ath10k_sdio_hif_diag_read(struct ath10k *ar, u32 address, void *buf,
        /* read the data */
        ret = ath10k_sdio_read(ar, MBOX_WINDOW_DATA_ADDRESS, buf, buf_len);
        if (ret) {
-               ath10k_warn(ar, "failed to read from mbox window data addrress: %d\n",
+               ath10k_warn(ar, "failed to read from mbox window data address: %d\n",
                            ret);
                return ret;
        }
@@ -1592,7 +1592,7 @@ static int ath10k_sdio_hif_diag_write_mem(struct ath10k *ar, u32 address,
        ret = ath10k_sdio_write(ar, MBOX_WINDOW_DATA_ADDRESS, data, nbytes);
        if (ret) {
                ath10k_warn(ar,
-                           "failed to write 0x%p to mbox window data addrress: %d\n",
+                           "failed to write 0x%p to mbox window data address: %d\n",
                            data, ret);
                return ret;
        }
index f918802..7616c1c 100644 (file)
@@ -2022,7 +2022,7 @@ ath10k_wmi_tlv_op_gen_sta_keepalive(struct ath10k *ar,
        arp->dest_ip4_addr = arg->dest_ip4_addr;
        ether_addr_copy(arp->dest_mac_addr.addr, arg->dest_mac_addr);
 
-       ath10k_dbg(ar, ATH10K_DBG_WMI, "wmi tlv sta keepalive vdev %d enabled %d method %d inverval %d\n",
+       ath10k_dbg(ar, ATH10K_DBG_WMI, "wmi tlv sta keepalive vdev %d enabled %d method %d interval %d\n",
                   arg->vdev_id, arg->enabled, arg->method, arg->interval);
        return skb;
 }