diff options
author | Yang Li <yang.lee@linux.alibaba.com> | 2022-01-11 09:04:54 +0800 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2022-03-11 19:02:13 +0530 |
commit | 8eb3e1b923fdb74995294c78ef6bba3d11dc6434 (patch) | |
tree | 232b04c44c14c08776b21160e9733c7a8dada83f /arch/riscv/kvm | |
parent | 4a204f7895878363ca8211f50ec610408c8c70aa (diff) | |
download | linux-riscv-8eb3e1b923fdb74995294c78ef6bba3d11dc6434.tar.gz linux-riscv-8eb3e1b923fdb74995294c78ef6bba3d11dc6434.tar.bz2 linux-riscv-8eb3e1b923fdb74995294c78ef6bba3d11dc6434.zip |
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/kvm')
-rw-r--r-- | arch/riscv/kvm/vcpu_sbi_v01.c | 2 |
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; } |