Skip to content

Commit 1ec12fd

Browse files
Chen NiJassi Brar
authored andcommitted
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>
1 parent 2475b36 commit 1ec12fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/mailbox/exynos-mailbox.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ static int exynos_mbox_send_data(struct mbox_chan *chan, void *data)
5757
if (msg->chan_type != EXYNOS_MBOX_CHAN_TYPE_DOORBELL) {
5858
dev_err(dev, "Unsupported channel type [%d]\n", msg->chan_type);
5959
return -EINVAL;
60-
};
60+
}
6161

6262
writel(BIT(msg->chan_id), exynos_mbox->regs + EXYNOS_MBOX_INTGR1);
6363

0 commit comments

Comments
 (0)