[PATCH] dmaengine: at_hdmac: Drop unnecessary parentheses
From: Claudiu
Date: Thu Mar 26 2026 - 15:43:52 EST
From: Claudiu Beznea <claudiu.beznea@xxxxxxxxx>
Drop unnecessary parentheses.
Signed-off-by: Claudiu Beznea <claudiu.beznea@xxxxxxxxx>
---
drivers/dma/at_hdmac.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/dma/at_hdmac.c b/drivers/dma/at_hdmac.c
index 9c8c0fea8003..060c3c868af4 100644
--- a/drivers/dma/at_hdmac.c
+++ b/drivers/dma/at_hdmac.c
@@ -816,7 +816,7 @@ static void atdma_handle_chan_done(struct at_dma_chan *atchan, u32 pending,
} else {
vchan_cookie_complete(&desc->vd);
atchan->desc = NULL;
- if (!(atc_chan_is_enabled(atchan)))
+ if (!atc_chan_is_enabled(atchan))
atc_dostart(atchan);
}
}
--
2.43.0