summaryrefslogtreecommitdiff
path: root/arch/riscv
diff options
context:
space:
mode:
authorYang Li <yang.lee@linux.alibaba.com>2022-01-11 09:04:54 +0800
committerAnup Patel <anup@brainfault.org>2022-03-11 19:02:13 +0530
commit8eb3e1b923fdb74995294c78ef6bba3d11dc6434 (patch)
tree232b04c44c14c08776b21160e9733c7a8dada83f /arch/riscv
parent4a204f7895878363ca8211f50ec610408c8c70aa (diff)
RISC-V: KVM: remove unneeded semicolon
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>
Diffstat (limited to 'arch/riscv')
-rw-r--r--arch/riscv/kvm/vcpu_sbi_v01.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/riscv/kvm/vcpu_sbi_v01.c b/arch/riscv/kvm/vcpu_sbi_v01.c
index 07e2de14433a..2ab52b6d9ed3 100644
--- 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;
}