diff mbox

[1/3] dmaengine: tegra-apb: Correct grammar in TX status debug message

Message ID 1467216519-7200-1-git-send-email-jonathanh@nvidia.com
State Accepted, archived
Headers show

Commit Message

Jon Hunter June 29, 2016, 4:08 p.m. UTC
Correct the grammar in the debug message when no descriptor is found.

Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
---
 drivers/dma/tegra20-apb-dma.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Vinod Koul June 30, 2016, 3:23 a.m. UTC | #1
On Wed, Jun 29, 2016 at 05:08:37PM +0100, Jon Hunter wrote:
> Correct the grammar in the debug message when no descriptor is found.

Applied all, thanks
Thierry Reding July 18, 2016, 7:17 a.m. UTC | #2
On Wed, Jun 29, 2016 at 05:08:37PM +0100, Jon Hunter wrote:
> Correct the grammar in the debug message when no descriptor is found.
> 
> Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
> ---
>  drivers/dma/tegra20-apb-dma.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Acked-by: Thierry Reding <treding@nvidia.com>
diff mbox

Patch

diff --git a/drivers/dma/tegra20-apb-dma.c b/drivers/dma/tegra20-apb-dma.c
index d84b0b88e708..0c7defbeefe7 100644
--- a/drivers/dma/tegra20-apb-dma.c
+++ b/drivers/dma/tegra20-apb-dma.c
@@ -843,7 +843,7 @@  static enum dma_status tegra_dma_tx_status(struct dma_chan *dc,
 		}
 	}
 
-	dev_dbg(tdc2dev(tdc), "cookie %d does not found\n", cookie);
+	dev_dbg(tdc2dev(tdc), "cookie %d not found\n", cookie);
 	spin_unlock_irqrestore(&tdc->lock, flags);
 	return ret;
 }