mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-04-13 09:59:31 +00:00
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:
parent
2475b36401
commit
1ec12fd31e
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue