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

Commit 5efb4c50 authored by Arun KS's avatar Arun KS
Browse files

dmaengine: edma: Fix EDMAC_VERB formatting errors



This patch fixes the wrong format specifier.

Change-Id: Ifab5c7ac9131fbe1ba9af4132ac452e5a30bd697
Signed-off-by: default avatarArun KS <arunks@codeaurora.org>
parent 019eaeb4
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -689,7 +689,7 @@ struct dma_async_tx_descriptor *edma_prep_dma_memcpy(struct dma_chan *chan,
	struct edmav_dev *ev_dev = to_edmav_dev(chan);
	struct edma_desc *desc;

	EDMAC_VERB(ev_dev->ec_dev, ev_dev->ch_id, "enter\n", chan);
	EDMAC_VERB(ev_dev->ec_dev, ev_dev->ch_id, "enter\n");

	desc = edma_alloc_descriptor(ev_dev);
	if (!desc)
@@ -700,11 +700,11 @@ struct dma_async_tx_descriptor *edma_prep_dma_memcpy(struct dma_chan *chan,
	/* insert the descriptor to client descriptor list */
	list_add_tail(&desc->node, &ev_dev->dl);

	EDMAC_VERB(ev_dev->ec_dev, ev_dev->ch_id, "exit\n", chan);
	EDMAC_VERB(ev_dev->ec_dev, ev_dev->ch_id, "exit\n");

	return &desc->tx;
err:
	EDMAC_VERB(ev_dev->ec_dev, ev_dev->ch_id, "exit with error\n", chan);
	EDMAC_VERB(ev_dev->ec_dev, ev_dev->ch_id, "exit with error\n");
	return NULL;
}