From: Colin Ian King Date: Wed, 22 Jan 2020 23:52:37 +0000 (+0000) Subject: dmaengine: s3c24xx-dma: fix spelling mistake "to" -> "too" X-Git-Tag: v5.10.7~3284^2~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e606c8b9d751e593b71bdcb636ac3392c62c1c50;p=platform%2Fkernel%2Flinux-rpi.git dmaengine: s3c24xx-dma: fix spelling mistake "to" -> "too" There is a spelling mistake in a dev_err message. Fix it. Signed-off-by: Colin Ian King Link: https://lore.kernel.org/r/20200122235237.2830344-1-colin.king@canonical.com Signed-off-by: Vinod Koul --- diff --git a/drivers/dma/s3c24xx-dma.c b/drivers/dma/s3c24xx-dma.c index 1ed5dc1..8e14c72 100644 --- a/drivers/dma/s3c24xx-dma.c +++ b/drivers/dma/s3c24xx-dma.c @@ -1198,7 +1198,7 @@ static int s3c24xx_dma_probe(struct platform_device *pdev) /* Basic sanity check */ if (pdata->num_phy_channels > MAX_DMA_CHANNELS) { - dev_err(&pdev->dev, "to many dma channels %d, max %d\n", + dev_err(&pdev->dev, "too many dma channels %d, max %d\n", pdata->num_phy_channels, MAX_DMA_CHANNELS); return -EINVAL; }