diff options
author | Jiapeng Chong <[email protected]> | 2022-05-06 17:45:12 +0800 |
---|---|---|
committer | Anup Patel <[email protected]> | 2022-05-20 09:08:58 +0530 |
commit | dba90d6fb8b0657d45516bfe1eb8fe83d9e425f8 (patch) | |
tree | 0098107555f48628387379d027a36469431cdd3d | |
parent | ac6c85e962d4c009c499d93657f25f46fd8212b9 (diff) |
KVM: selftests: riscv: Remove unneeded semicolon
Fix the following coccicheck warnings:
./tools/testing/selftests/kvm/lib/riscv/processor.c:353:3-4: Unneeded
semicolon.
Reported-by: Abaci Robot <[email protected]>
Signed-off-by: Jiapeng Chong <[email protected]>
Signed-off-by: Anup Patel <[email protected]>
-rw-r--r-- | tools/testing/selftests/kvm/lib/riscv/processor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/kvm/lib/riscv/processor.c b/tools/testing/selftests/kvm/lib/riscv/processor.c index 56e4705f7744..abc0ae5a4fe1 100644 --- a/tools/testing/selftests/kvm/lib/riscv/processor.c +++ b/tools/testing/selftests/kvm/lib/riscv/processor.c @@ -351,7 +351,7 @@ void vcpu_args_set(struct kvm_vm *vm, uint32_t vcpuid, unsigned int num, ...) case 7: id = RISCV_CORE_REG(regs.a7); break; - }; + } set_reg(vm, vcpuid, id, va_arg(ap, uint64_t)); } |