projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4a204f7
)
RISC-V: KVM: remove unneeded semicolon
author
Yang Li
<yang.lee@linux.alibaba.com>
Tue, 11 Jan 2022 01:04:54 +0000
(09:04 +0800)
committer
Anup Patel
<anup@brainfault.org>
Fri, 11 Mar 2022 13:32:13 +0000
(19:02 +0530)
Eliminate the following coccicheck warning:
./arch/riscv/kvm/vcpu_sbi_v01.c:117:2-3: Unneeded semicolon
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Signed-off-by: Anup Patel <anup@brainfault.org>
arch/riscv/kvm/vcpu_sbi_v01.c
patch
|
blob
|
history
diff --git
a/arch/riscv/kvm/vcpu_sbi_v01.c
b/arch/riscv/kvm/vcpu_sbi_v01.c
index 07e2de14433a634505dba18aa70242b3cdad3d36..2ab52b6d9ed371561bcbc860ed28bc6eb2a433eb 100644
(file)
--- a/
arch/riscv/kvm/vcpu_sbi_v01.c
+++ b/
arch/riscv/kvm/vcpu_sbi_v01.c
@@
-111,7
+111,7
@@
static int kvm_sbi_ext_v01_handler(struct kvm_vcpu *vcpu, struct kvm_run *run,
default:
ret = -EINVAL;
break;
- }
;
+ }
return ret;
}