Browse Source

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 <jonathanh@nvidia.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Jon Hunter 9 years ago
parent
commit
019bfcc65b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/dma/tegra20-apb-dma.c

+ 1 - 1
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;
 }