aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma
diff options
context:
space:
mode:
authorFlavio Suligoi <f.suligoi@asem.it>2021-09-28 17:18:30 +0200
committerVinod Koul <vkoul@kernel.org>2021-10-18 12:15:39 +0530
commitef6c1dadc2a255965c6b47c365dec60b05e19ea6 (patch)
tree2ab12fe0ec23eccd9b25a5175436107342ddc180 /drivers/dma
parentdmaengine: dw-axi-dmac: set coherent mask (diff)
downloadlinux-dev-ef6c1dadc2a255965c6b47c365dec60b05e19ea6.tar.xz
linux-dev-ef6c1dadc2a255965c6b47c365dec60b05e19ea6.zip
dmaengine: imx-sdma: remove useless braces
Braces {} are not necessary for single statement blocks. Signed-off-by: Flavio Suligoi <f.suligoi@asem.it> Link: https://lore.kernel.org/r/20210928151833.589843-1-f.suligoi@asem.it Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma')
-rw-r--r--drivers/dma/imx-sdma.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/dma/imx-sdma.c b/drivers/dma/imx-sdma.c
index cacc725ca545..a58798fc3ff8 100644
--- a/drivers/dma/imx-sdma.c
+++ b/drivers/dma/imx-sdma.c
@@ -741,9 +741,8 @@ static int sdma_load_script(struct sdma_engine *sdma, void *buf, int size,
unsigned long flags;
buf_virt = dma_alloc_coherent(sdma->dev, size, &buf_phys, GFP_KERNEL);
- if (!buf_virt) {
+ if (!buf_virt)
return -ENOMEM;
- }
spin_lock_irqsave(&sdma->channel_0_lock, flags);