[PATCH] RISC-V: fix semicolon.cocci warnings

kernel test robot posted 1 patch 4 years, 5 months ago
There is a newer version of this series
smp.c |    2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] RISC-V: fix semicolon.cocci warnings
Posted by kernel test robot 4 years, 5 months ago
From: kernel test robot <lkp@intel.com>

arch/riscv/kernel/smp.c:120:2-3: Unneeded semicolon


 Remove unneeded semicolon.

Generated by: scripts/coccinelle/misc/semicolon.cocci

CC: Anup Patel <apatel@ventanamicro.com>
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: kernel test robot <lkp@intel.com>
---

tree:   https://github.com/avpatel/linux.git riscv_aia_v1
head:   c0d96c2f57e644a9ec0819785541e033f8ce5e6b
commit: bbfd82cb293e2c4fe309a1c9bf59d3a4d9459d26 [3/21] RISC-V: Treat IPIs as normal Linux IRQs
:::::: branch date: 10 hours ago
:::::: commit date: 2 days ago

 smp.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/arch/riscv/kernel/smp.c
+++ b/arch/riscv/kernel/smp.c
@@ -117,7 +117,7 @@ static irqreturn_t handle_IPI(int irq, v
 	default:
 		pr_warn("CPU%d: unhandled IPI%d\n", smp_processor_id(), ipi);
 		break;
-	};
+	}
 
 	return IRQ_HANDLED;
 }