From: Mohammed Shafi Shajakhan <moham...@qti.qualcomm.com>

Remove extraneous error message in 'ath10k_htt_tx_alloc_cont_frag_desc'
as the caller 'ath10k_htt_tx_alloc' already dumps a proper error
message

Signed-off-by: Mohammed Shafi Shajakhan <moham...@qti.qualcomm.com>
---
 drivers/net/wireless/ath/ath10k/htt_tx.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/net/wireless/ath/ath10k/htt_tx.c 
b/drivers/net/wireless/ath/ath10k/htt_tx.c
index 786fbd7..4255c1a 100644
--- a/drivers/net/wireless/ath/ath10k/htt_tx.c
+++ b/drivers/net/wireless/ath/ath10k/htt_tx.c
@@ -283,10 +283,8 @@ static int ath10k_htt_tx_alloc_cont_frag_desc(struct 
ath10k_htt *htt)
        htt->frag_desc.vaddr = dma_alloc_coherent(ar->dev, size,
                                                  &htt->frag_desc.paddr,
                                                  GFP_KERNEL);
-       if (!htt->frag_desc.vaddr) {
-               ath10k_err(ar, "failed to alloc fragment desc memory\n");
+       if (!htt->frag_desc.vaddr)
                return -ENOMEM;
-       }
 
        return 0;
 }
-- 
1.9.1

Reply via email to