projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8d34509
)
KVM: MIPS/Emulate: Remove unneeded semicolon
author
Zou Wei
<zou_wei@huawei.com>
Thu, 30 Apr 2020 03:19:36 +0000
(11:19 +0800)
committer
Thomas Bogendoerfer
<tsbogend@alpha.franken.de>
Wed, 13 May 2020 22:29:25 +0000
(
00:29
+0200)
Fixes coccicheck warnings:
arch/mips/kvm/emulate.c:1793:3-4: Unneeded semicolon
arch/mips/kvm/emulate.c:1968:3-4: Unneeded semicolon
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zou Wei <zou_wei@huawei.com>
Reviewed-by: Huacai Chen <chenhc@lemote.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
arch/mips/kvm/emulate.c
patch
|
blob
|
history
diff --git
a/arch/mips/kvm/emulate.c
b/arch/mips/kvm/emulate.c
index 8c80333816fe6400c61f073e6c44ab4d801ab640..7ccf9b096783fd336e6836663e2c56f17838c987 100644
(file)
--- a/
arch/mips/kvm/emulate.c
+++ b/
arch/mips/kvm/emulate.c
@@
-1790,7
+1790,7
@@
static enum emulation_result kvm_mips_guest_cache_op(int (*fn)(unsigned long),
return EMULATE_EXCEPT;
default:
break;
- }
;
+ }
}
}
@@
-1965,7
+1965,7
@@
enum emulation_result kvm_mips_emulate_inst(u32 cause, u32 *opc,
break;
default:
goto unknown;
- }
;
+ }
break;
unknown:
#endif