[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20250310082628.845544-1-nichen@iscas.ac.cn>
Date: Mon, 10 Mar 2025 16:26:28 +0800
From: Chen Ni <nichen@...as.ac.cn>
To: tudor.ambarus@...aro.org,
jassisinghbrar@...il.com,
krzk@...nel.org,
alim.akhtar@...sung.com,
linux-kernel@...r.kernel.org,
linux-samsung-soc@...r.kernel.org,
linux-arm-kernel@...ts.infradead.org
Cc: Chen Ni <nichen@...as.ac.cn>
Subject: [PATCH] mailbox: Remove unneeded semicolon
Remove unnecessary semicolons reported by Coccinelle/coccicheck and the
semantic patch at scripts/coccinelle/misc/semicolon.cocci.
Signed-off-by: Chen Ni <nichen@...as.ac.cn>
---
drivers/mailbox/exynos-mailbox.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mailbox/exynos-mailbox.c b/drivers/mailbox/exynos-mailbox.c
index 20049f0ec5ff..2320649bf60c 100644
--- a/drivers/mailbox/exynos-mailbox.c
+++ b/drivers/mailbox/exynos-mailbox.c
@@ -57,7 +57,7 @@ static int exynos_mbox_send_data(struct mbox_chan *chan, void *data)
if (msg->chan_type != EXYNOS_MBOX_CHAN_TYPE_DOORBELL) {
dev_err(dev, "Unsupported channel type [%d]\n", msg->chan_type);
return -EINVAL;
- };
+ }
writel(BIT(msg->chan_id), exynos_mbox->regs + EXYNOS_MBOX_INTGR1);
--
2.25.1
Powered by blists - more mailing lists