Messages in this thread Patch in this message |  | | Date | Tue, 22 Aug 2017 15:50:53 +0800 | From | kbuild test robot <> | Subject | [PATCH] genirq: fix semicolon.cocci warnings |
| |
kernel/irq/proc.c:69:2-3: Unneeded semicolon
Remove unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
Fixes: 0d3f54257dc3 ("genirq: Introduce effective affinity mask") Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> ---
proc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
--- a/kernel/irq/proc.c +++ b/kernel/irq/proc.c @@ -66,7 +66,7 @@ static int show_irq_affinity(int type, s #else return -EINVAL; #endif - }; + } switch (type) { case AFFINITY_LIST:
|  |