aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/s3c24xx-dma.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2020-01-22 23:52:37 +0000
committerVinod Koul <vkoul@kernel.org>2020-01-23 17:03:25 +0530
commite606c8b9d751e593b71bdcb636ac3392c62c1c50 (patch)
tree75377f2c2a759bbb41a062f2e308054c6cb086e3 /drivers/dma/s3c24xx-dma.c
parentdmaengine: Move dma_get_{,any_}slave_channel() to private dmaengine.h (diff)
downloadlinux-dev-e606c8b9d751e593b71bdcb636ac3392c62c1c50.tar.xz
linux-dev-e606c8b9d751e593b71bdcb636ac3392c62c1c50.zip
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 <colin.king@canonical.com> Link: https://lore.kernel.org/r/20200122235237.2830344-1-colin.king@canonical.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma/s3c24xx-dma.c')
-rw-r--r--drivers/dma/s3c24xx-dma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/s3c24xx-dma.c b/drivers/dma/s3c24xx-dma.c
index 1ed5dc1f597c..8e14c72d03f0 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;
}