aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/stm32-dma.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2017-02-21 18:30:45 +0000
committerVinod Koul <vinod.koul@intel.com>2017-03-06 10:41:24 +0530
commit041cf7e064996373148b24788e1aa7a036266986 (patch)
tree0249ada4708d6044a9dff3baa73fd3a58e2abaf1 /drivers/dma/stm32-dma.c
parentLinux 4.11-rc1 (diff)
downloadlinux-dev-041cf7e064996373148b24788e1aa7a036266986.tar.xz
linux-dev-041cf7e064996373148b24788e1aa7a036266986.zip
dmaengine: stm32-dma: fix up error dev_err message
Trivial fix to spelling mistake and make channel plural. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/stm32-dma.c')
-rw-r--r--drivers/dma/stm32-dma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/stm32-dma.c b/drivers/dma/stm32-dma.c
index 49f86cabcfec..786fc8fcc38e 100644
--- a/drivers/dma/stm32-dma.c
+++ b/drivers/dma/stm32-dma.c
@@ -1008,7 +1008,7 @@ static struct dma_chan *stm32_dma_of_xlate(struct of_phandle_args *dma_spec,
c = dma_get_slave_channel(&chan->vchan.chan);
if (!c) {
- dev_err(dev, "No more channel avalaible\n");
+ dev_err(dev, "No more channels available\n");
return NULL;
}