ath10k: remove unnecessary 'out of memory' message
authorKalle Valo <kvalo@codeaurora.org>
Thu, 27 Jun 2019 18:47:29 +0000 (21:47 +0300)
committerKalle Valo <kvalo@codeaurora.org>
Fri, 28 Jun 2019 19:14:06 +0000 (22:14 +0300)
Fixes checkpatch warning:

drivers/net/wireless/ath/ath10k/swap.c:110: Possible unnecessary 'out of memory' message

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

index 4dddeee..7198a38 100644 (file)
@@ -106,10 +106,8 @@ ath10k_swap_code_seg_alloc(struct ath10k *ar, size_t swap_bin_len)
 
        virt_addr = dma_alloc_coherent(ar->dev, swap_bin_len, &paddr,
                                       GFP_KERNEL);
-       if (!virt_addr) {
-               ath10k_err(ar, "failed to allocate dma coherent memory\n");
+       if (!virt_addr)
                return NULL;
-       }
 
        seg_info->seg_hw_info.bus_addr[0] = __cpu_to_le32(paddr);
        seg_info->seg_hw_info.size = __cpu_to_le32(swap_bin_len);