Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a360e54c authored by Michal Kazior's avatar Michal Kazior Committed by Kalle Valo
Browse files

ath10k: add debug dump for pci rx



This makes it easier to debug the device-target
communication at a very low level.

Signed-off-by: default avatarMichal Kazior <michal.kazior@tieto.com>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent 45724a8a
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -861,6 +861,12 @@ static void ath10k_pci_ce_recv_data(struct ath10k_ce_pipe *ce_state)
		}

		skb_put(skb, nbytes);

		ath10k_dbg(ar, ATH10K_DBG_PCI, "pci rx ce pipe %d len %d\n",
			   ce_state->id, skb->len);
		ath10k_dbg_dump(ar, ATH10K_DBG_PCI_DUMP, NULL, "pci rx: ",
				skb->data, skb->len);

		cb->rx_completion(ar, skb, pipe_info->pipe_num);
	}