diff options
author | 2025-03-10 16:26:28 +0800 | |
---|---|---|
committer | 2025-03-26 20:58:26 -0500 | |
commit | 1ec12fd31ecc38e2a81a137be7eec5df51894bcc (patch) | |
tree | d3c767cc64d7a9f6a84c2221423754c6ac1320c9 /drivers | |
parent | mailbox: pcc: Refactor and simplify check_and_ack() (diff) | |
download | wireguard-linux-1ec12fd31ecc38e2a81a137be7eec5df51894bcc.tar.xz wireguard-linux-1ec12fd31ecc38e2a81a137be7eec5df51894bcc.zip |
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>
Diffstat (limited to 'drivers')
-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); |