diff options
| author | Chen Ni <[email protected]> | 2025-03-10 08:26:28 +0000 |
|---|---|---|
| committer | Jassi Brar <[email protected]> | 2025-03-27 01:58:26 +0000 |
| commit | 1ec12fd31ecc38e2a81a137be7eec5df51894bcc (patch) | |
| tree | d3c767cc64d7a9f6a84c2221423754c6ac1320c9 | |
| parent | mailbox: pcc: Refactor and simplify check_and_ack() (diff) | |
| download | kernel-1ec12fd31ecc38e2a81a137be7eec5df51894bcc.tar.gz kernel-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 <[email protected]>
Signed-off-by: Jassi Brar <[email protected]>
| -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); |
