diff mbox series

dmaengine: fix spelling mistake "to" -> "too"

Message ID 20200123092359.10714-1-colin.king@canonical.com (mailing list archive)
State Not Applicable
Headers show
Series dmaengine: fix spelling mistake "to" -> "too" | expand

Commit Message

Colin King Jan. 23, 2020, 9:23 a.m. UTC
From: Colin Ian King <colin.king@canonical.com>

There is a spelling mistake in a dev_err message. Fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/dma/s3c24xx-dma.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Vinod Koul Jan. 23, 2020, 11:35 a.m. UTC | #1
On 23-01-20, 09:23, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> There is a spelling mistake in a dev_err message. Fix it.

You had sent this earlier, I have picked that one already!
Colin King Jan. 23, 2020, 11:36 a.m. UTC | #2
On 23/01/2020 11:35, Vinod Koul wrote:
> On 23-01-20, 09:23, Colin King wrote:
>> From: Colin Ian King <colin.king@canonical.com>
>>
>> There is a spelling mistake in a dev_err message. Fix it.
> 
> You had sent this earlier, I have picked that one already!
> 
Oops. I'm going mad.
diff mbox series

Patch

diff --git a/drivers/dma/s3c24xx-dma.c b/drivers/dma/s3c24xx-dma.c
index 1ed5dc1f597c..26fa863a709e 100644
--- a/drivers/dma/s3c24xx-dma.c
+++ b/drivers/dma/s3c24xx-dma.c
@@ -826,7 +826,7 @@  static struct dma_async_tx_descriptor *s3c24xx_dma_prep_memcpy(
 			len, s3cchan->name);
 
 	if ((len & S3C24XX_DCON_TC_MASK) != len) {
-		dev_err(&s3cdma->pdev->dev, "memcpy size %zu to large\n", len);
+		dev_err(&s3cdma->pdev->dev, "memcpy size %zu too large\n", len);
 		return NULL;
 	}