aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/mv_xor.c
diff options
context:
space:
mode:
authorStefan Roese <sr@denx.de>2016-06-01 12:43:31 +0200
committerVinod Koul <vinod.koul@intel.com>2016-06-07 12:43:40 +0530
commita4a1e53df41270b9fcb5f0c42872fd08ab42a74f (patch)
tree03c66d47c20ebb14efa1a04febafe658078ad959 /drivers/dma/mv_xor.c
parentLinux 4.7-rc1 (diff)
downloadlinux-dev-a4a1e53df41270b9fcb5f0c42872fd08ab42a74f.tar.xz
linux-dev-a4a1e53df41270b9fcb5f0c42872fd08ab42a74f.zip
dmaengine: mv_xor: Minor coding style fix
Remove the space before the "err_free_dma:" label in mv_xor_channel_add(). Signed-off-by: Stefan Roese <sr@denx.de> Cc: Gregory CLEMENT <gregory.clement@free-electrons.com> Cc: Marcin Wojtas <mw@semihalf.com> Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/mv_xor.c')
-rw-r--r--drivers/dma/mv_xor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/mv_xor.c b/drivers/dma/mv_xor.c
index 25d1dadcddd1..55815c1dfb04 100644
--- a/drivers/dma/mv_xor.c
+++ b/drivers/dma/mv_xor.c
@@ -1055,7 +1055,7 @@ mv_xor_channel_add(struct mv_xor_device *xordev,
err_free_irq:
free_irq(mv_chan->irq, mv_chan);
- err_free_dma:
+err_free_dma:
dma_free_coherent(&pdev->dev, MV_XOR_POOL_SIZE,
mv_chan->dma_desc_pool_virt, mv_chan->dma_desc_pool);
return ERR_PTR(ret);