]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
dmaengine: fix spelling mistake "exceds" -> "exceeds"
authorColin Ian King <colin.king@canonical.com>
Mon, 16 Mar 2020 09:16:53 +0000 (09:16 +0000)
committerVinod Koul <vkoul@kernel.org>
Mon, 23 Mar 2020 06:09:49 +0000 (11:39 +0530)
There are a couple of spelling mistakes in dev_err error messages.
Fix them.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Link: https://lore.kernel.org/r/20200316091653.110984-1-colin.king@canonical.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/dma/sh/rcar-dmac.c
drivers/dma/sh/shdma-base.c

index f06016d38a05f284ffabd53d54e267300979bb06..59b36ab5d6849629b5e3f3bbb0b095bb23c31701 100644 (file)
@@ -1219,7 +1219,7 @@ rcar_dmac_prep_dma_cyclic(struct dma_chan *chan, dma_addr_t buf_addr,
        sg_len = buf_len / period_len;
        if (sg_len > RCAR_DMAC_MAX_SG_LEN) {
                dev_err(chan->device->dev,
-                       "chan%u: sg length %d exceds limit %d",
+                       "chan%u: sg length %d exceeds limit %d",
                        rchan->index, sg_len, RCAR_DMAC_MAX_SG_LEN);
                return NULL;
        }
index c51de498b5b4b92073758b2a0c24e2038b8506b7..2deeaab078a46f0119dd19c9adce9d2642e8d274 100644 (file)
@@ -709,7 +709,7 @@ static struct dma_async_tx_descriptor *shdma_prep_dma_cyclic(
        BUG_ON(!schan->desc_num);
 
        if (sg_len > SHDMA_MAX_SG_LEN) {
-               dev_err(schan->dev, "sg length %d exceds limit %d",
+               dev_err(schan->dev, "sg length %d exceeds limit %d",
                                sg_len, SHDMA_MAX_SG_LEN);
                return NULL;
        }