dmaengine: ep93xx: fix some typo
authorYangtao Li <tiny.windzz@gmail.com>
Thu, 1 Nov 2018 15:35:43 +0000 (11:35 -0400)
committerVinod Koul <vkoul@kernel.org>
Sun, 11 Nov 2018 09:26:49 +0000 (14:56 +0530)
Signed-off-by: Yangtao Li <tiny.windzz@gmail.com>
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/dma/ep93xx_dma.c

index f674eb5..594a88f 100644 (file)
@@ -997,7 +997,7 @@ ep93xx_dma_prep_dma_memcpy(struct dma_chan *chan, dma_addr_t dest,
        for (offset = 0; offset < len; offset += bytes) {
                desc = ep93xx_dma_desc_get(edmac);
                if (!desc) {
-                       dev_warn(chan2dev(edmac), "couln't get descriptor\n");
+                       dev_warn(chan2dev(edmac), "couldn't get descriptor\n");
                        goto fail;
                }
 
@@ -1069,7 +1069,7 @@ ep93xx_dma_prep_slave_sg(struct dma_chan *chan, struct scatterlist *sgl,
 
                desc = ep93xx_dma_desc_get(edmac);
                if (!desc) {
-                       dev_warn(chan2dev(edmac), "couln't get descriptor\n");
+                       dev_warn(chan2dev(edmac), "couldn't get descriptor\n");
                        goto fail;
                }
 
@@ -1149,7 +1149,7 @@ ep93xx_dma_prep_dma_cyclic(struct dma_chan *chan, dma_addr_t dma_addr,
        for (offset = 0; offset < buf_len; offset += period_len) {
                desc = ep93xx_dma_desc_get(edmac);
                if (!desc) {
-                       dev_warn(chan2dev(edmac), "couln't get descriptor\n");
+                       dev_warn(chan2dev(edmac), "couldn't get descriptor\n");
                        goto fail;
                }