Skip to content

Commit 79a4b78

Browse files
bebarinoKalle Valo
authored andcommitted
ath10k: Add newlines to printk messages
Some printks in here don't have newlines at the end, meaning the log will be sort of hard to read. Add newlines. Signed-off-by: Stephen Boyd <[email protected]> Signed-off-by: Kalle Valo <[email protected]>
1 parent 6ba8b3b commit 79a4b78

File tree

1 file changed

+3
-3
lines changed
  • drivers/net/wireless/ath/ath10k

1 file changed

+3
-3
lines changed

drivers/net/wireless/ath/ath10k/snoc.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ static void ath10k_snoc_process_rx_cb(struct ath10k_ce_pipe *ce_state,
582582
max_nbytes, DMA_FROM_DEVICE);
583583

584584
if (unlikely(max_nbytes < nbytes)) {
585-
ath10k_warn(ar, "rxed more than expected (nbytes %d, max %d)",
585+
ath10k_warn(ar, "rxed more than expected (nbytes %d, max %d)\n",
586586
nbytes, max_nbytes);
587587
dev_kfree_skb_any(skb);
588588
continue;
@@ -1201,7 +1201,7 @@ static int ath10k_snoc_request_irq(struct ath10k *ar)
12011201
irqflags, ce_name[id], ar);
12021202
if (ret) {
12031203
ath10k_err(ar,
1204-
"failed to register IRQ handler for CE %d: %d",
1204+
"failed to register IRQ handler for CE %d: %d\n",
12051205
id, ret);
12061206
goto err_irq;
12071207
}
@@ -1485,7 +1485,7 @@ static int ath10k_snoc_probe(struct platform_device *pdev)
14851485

14861486
ret = dma_set_mask_and_coherent(dev, drv_data->dma_mask);
14871487
if (ret) {
1488-
dev_err(dev, "failed to set dma mask: %d", ret);
1488+
dev_err(dev, "failed to set dma mask: %d\n", ret);
14891489
return ret;
14901490
}
14911491

0 commit comments

Comments
 (0)