[PATCH 1/4] dmaengine: imx-sdma: remove useless braces

From: Flavio Suligoi
Date: Tue Sep 28 2021 - 11:19:49 EST


Braces {} are not necessary for single statement blocks.

Signed-off-by: Flavio Suligoi <f.suligoi@xxxxxxx>
---
drivers/dma/imx-sdma.c | 3 +--
1 file changed, 1 insertion(+), 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);

--
2.25.1