projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c02e963
)
MIPS: Netlogic: remove unneeded semicolon in fmn_message_handler()
author
Jason Yan
<yanaijie@huawei.com>
Sat, 18 Apr 2020 08:18:34 +0000
(16:18 +0800)
committer
Thomas Bogendoerfer
<tsbogend@alpha.franken.de>
Sun, 19 Apr 2020 14:05:19 +0000
(16:05 +0200)
Fix the following coccicheck warning:
arch/mips/netlogic/xlr/fmn.c:106:2-3: Unneeded semicolon
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Jason Yan <yanaijie@huawei.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
arch/mips/netlogic/xlr/fmn.c
patch
|
blob
|
history
diff --git
a/arch/mips/netlogic/xlr/fmn.c
b/arch/mips/netlogic/xlr/fmn.c
index d7db1533889aaeb5fc4a0f1257ab85180e868b72..f90303f3196729e4fc86c838dcb5006a092046ae 100644
(file)
--- a/
arch/mips/netlogic/xlr/fmn.c
+++ b/
arch/mips/netlogic/xlr/fmn.c
@@
-103,7
+103,7
@@
static irqreturn_t fmn_message_handler(int irq, void *data)
mflags = nlm_cop2_enable_irqsave();
}
}
- }
;
+ }
/* Enable message ring intr, to any thread in core */
nlm_fmn_setup_intr(irq, (1 << nlm_threads_per_core) - 1);
nlm_cop2_disable_irqrestore(mflags);