Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Colin Ian King and committed by
Vinod Koul
e606c8b9 c3c431de

+1 -1
+1 -1
drivers/dma/s3c24xx-dma.c
··· 1198 1198 1199 1199 /* Basic sanity check */ 1200 1200 if (pdata->num_phy_channels > MAX_DMA_CHANNELS) { 1201 - dev_err(&pdev->dev, "to many dma channels %d, max %d\n", 1201 + dev_err(&pdev->dev, "too many dma channels %d, max %d\n", 1202 1202 pdata->num_phy_channels, MAX_DMA_CHANNELS); 1203 1203 return -EINVAL; 1204 1204 }