Commit 6c0157be authored by Colin Ian King's avatar Colin Ian King Committed by Vinod Koul

dmaengine: ti: k3-udma: fix spelling mistake "limted" -> "limited"

There are spelling mistakes in dev_err messages. Fix them.
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Acked-by: default avatarPeter Ujfalusi <peter.ujfalusi@ti.com>
Link: https://lore.kernel.org/r/20200122093818.2800743-1-colin.king@canonical.comSigned-off-by: default avatarVinod Koul <vkoul@kernel.org>
parent e606c8b9
...@@ -2300,7 +2300,7 @@ udma_prep_slave_sg(struct dma_chan *chan, struct scatterlist *sgl, ...@@ -2300,7 +2300,7 @@ udma_prep_slave_sg(struct dma_chan *chan, struct scatterlist *sgl,
/* static TR for remote PDMA */ /* static TR for remote PDMA */
if (udma_configure_statictr(uc, d, dev_width, burst)) { if (udma_configure_statictr(uc, d, dev_width, burst)) {
dev_err(uc->ud->dev, dev_err(uc->ud->dev,
"%s: StaticTR Z is limted to maximum 4095 (%u)\n", "%s: StaticTR Z is limited to maximum 4095 (%u)\n",
__func__, d->static_tr.bstcnt); __func__, d->static_tr.bstcnt);
udma_free_hwdesc(uc, d); udma_free_hwdesc(uc, d);
...@@ -2483,7 +2483,7 @@ udma_prep_dma_cyclic(struct dma_chan *chan, dma_addr_t buf_addr, size_t buf_len, ...@@ -2483,7 +2483,7 @@ udma_prep_dma_cyclic(struct dma_chan *chan, dma_addr_t buf_addr, size_t buf_len,
/* static TR for remote PDMA */ /* static TR for remote PDMA */
if (udma_configure_statictr(uc, d, dev_width, burst)) { if (udma_configure_statictr(uc, d, dev_width, burst)) {
dev_err(uc->ud->dev, dev_err(uc->ud->dev,
"%s: StaticTR Z is limted to maximum 4095 (%u)\n", "%s: StaticTR Z is limited to maximum 4095 (%u)\n",
__func__, d->static_tr.bstcnt); __func__, d->static_tr.bstcnt);
udma_free_hwdesc(uc, d); udma_free_hwdesc(uc, d);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment