diff options
author | Chen Ni <nichen@iscas.ac.cn> | 2025-03-10 16:26:28 +0800 |
---|---|---|
committer | Jassi Brar <jassisinghbrar@gmail.com> | 2025-03-26 20:58:26 -0500 |
commit | 1ec12fd31ecc38e2a81a137be7eec5df51894bcc (patch) | |
tree | d3c767cc64d7a9f6a84c2221423754c6ac1320c9 | |
parent | 2475b36401eda70f60e5d18d67ccafb81cedd0f7 (diff) |
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>
-rw-r--r-- | drivers/mailbox/exynos-mailbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |