From: Jon Hunter Date: Wed, 29 Jun 2016 16:08:37 +0000 (+0100) Subject: dmaengine: tegra-apb: Correct grammar in TX status debug message X-Git-Tag: v4.8-rc1~117^2~23 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=019bfcc65baa40a36ff0d1af611ecdc27199dad1;p=thirdparty%2Fkernel%2Flinux.git dmaengine: tegra-apb: Correct grammar in TX status debug message Correct the grammar in the debug message when no descriptor is found. Signed-off-by: Jon Hunter Signed-off-by: Vinod Koul --- diff --git a/drivers/dma/tegra20-apb-dma.c b/drivers/dma/tegra20-apb-dma.c index 032884fe32770..bc91fea47e33a 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; }