diff options
author | Colin Ian King <colin.king@canonical.com> | 2018-04-29 01:03:52 +0300 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2018-05-02 07:27:37 +0300 |
commit | d317d32b4f9ad68626fb527bde151f025a7bfbb1 (patch) | |
tree | 15bd54341c96bea638d449a6dcdada662de908f8 /drivers/dma/stm32-mdma.c | |
parent | bbb5a4e1e772c878783c2d59b97ac3b358d4a0a6 (diff) | |
download | linux-d317d32b4f9ad68626fb527bde151f025a7bfbb1.tar.xz |
dmaengine: stm32-mdma: fix spelling mistake: "avalaible" -> "available"
Trivial fix to spelling mistake in dev_err error message text and make
channel plural.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma/stm32-mdma.c')
-rw-r--r-- | drivers/dma/stm32-mdma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/stm32-mdma.c b/drivers/dma/stm32-mdma.c index 1ac775f93d9e..9dc450b7ace6 100644 --- a/drivers/dma/stm32-mdma.c +++ b/drivers/dma/stm32-mdma.c @@ -1521,7 +1521,7 @@ static struct dma_chan *stm32_mdma_of_xlate(struct of_phandle_args *dma_spec, c = dma_get_any_slave_channel(&dmadev->ddev); if (!c) { - dev_err(mdma2dev(dmadev), "No more channel avalaible\n"); + dev_err(mdma2dev(dmadev), "No more channels available\n"); return NULL; } |