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@iscas.ac.cn>
Signed-off-by: Jassi Brar <jassisinghbrar@gmail.com>
This commit is contained in:
Chen Ni 2025-03-10 16:26:28 +08:00 committed by Jassi Brar
parent 2475b36401
commit 1ec12fd31e

View file

@ -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) { if (msg->chan_type != EXYNOS_MBOX_CHAN_TYPE_DOORBELL) {
dev_err(dev, "Unsupported channel type [%d]\n", msg->chan_type); dev_err(dev, "Unsupported channel type [%d]\n", msg->chan_type);
return -EINVAL; return -EINVAL;
}; }
writel(BIT(msg->chan_id), exynos_mbox->regs + EXYNOS_MBOX_INTGR1); writel(BIT(msg->chan_id), exynos_mbox->regs + EXYNOS_MBOX_INTGR1);