ath10k: fix few checkpatch warnings
authorKalle Valo <kvalo@codeaurora.org>
Tue, 11 Feb 2020 08:59:38 +0000 (10:59 +0200)
committerKalle Valo <kvalo@codeaurora.org>
Tue, 11 Feb 2020 14:17:33 +0000 (16:17 +0200)
Fix warnings which were recently introduced:

drivers/net/wireless/ath/ath10k/ahb.c:462: Alignment should match open parenthesis
drivers/net/wireless/ath/ath10k/ahb.c:470: Alignment should match open parenthesis
drivers/net/wireless/ath/ath10k/sdio.c:697: space prohibited before that close parenthesis ')'

Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/ath/ath10k/ahb.c
drivers/net/wireless/ath/ath10k/sdio.c

index ed87bc00f2aa81dd5a8c94aad4de238ef3224c6b..342a7e58018acd4393e829137e7e882d7da8ddfd 100644 (file)
@@ -459,7 +459,7 @@ static int ath10k_ahb_resource_init(struct ath10k *ar)
        ar_ahb->mem_len = resource_size(res);
 
        ar_ahb->gcc_mem = ioremap(ATH10K_GCC_REG_BASE,
-                                         ATH10K_GCC_REG_SIZE);
+                                 ATH10K_GCC_REG_SIZE);
        if (!ar_ahb->gcc_mem) {
                ath10k_err(ar, "gcc mem ioremap error\n");
                ret = -ENOMEM;
@@ -467,7 +467,7 @@ static int ath10k_ahb_resource_init(struct ath10k *ar)
        }
 
        ar_ahb->tcsr_mem = ioremap(ATH10K_TCSR_REG_BASE,
-                                          ATH10K_TCSR_REG_SIZE);
+                                  ATH10K_TCSR_REG_SIZE);
        if (!ar_ahb->tcsr_mem) {
                ath10k_err(ar, "tcsr mem ioremap error\n");
                ret = -ENOMEM;
index e5316b911e1dd6ba9e57d922d58d221dc95ef823..2e9d782221538586580e024b163df8b18f84cdba 100644 (file)
@@ -694,7 +694,7 @@ static int ath10k_sdio_mbox_rx_fetch_bundle(struct ath10k *ar)
                htc_hdr = (struct ath10k_htc_hdr *)(ar_sdio->vsg_buffer + pkt_offset);
                pkt->act_len = le16_to_cpu(htc_hdr->len) + sizeof(*htc_hdr);
 
-               if (pkt->act_len > pkt->alloc_len ) {
+               if (pkt->act_len > pkt->alloc_len) {
                        ret = -EINVAL;
                        goto err;
                }