diff options
author | Colin Ian King <colin.i.king@gmail.com> | 2024-03-15 12:29:14 +0300 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2024-03-25 11:46:28 +0300 |
commit | 7fd99b7ab57057f219bb6cb2a1ff0b88a2b84420 (patch) | |
tree | 8a1151910f577aead8a673d0f235787ab84581a7 /arch | |
parent | 5448d9282af57c2c89a3033f1d56b31689d09b73 (diff) | |
download | linux-7fd99b7ab57057f219bb6cb2a1ff0b88a2b84420.tar.xz |
RISC-V: KVM: Remove second semicolon
There is a statement with two semicolons. Remove the second one, it
is redundant.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Anup Patel <anup@brainfault.org>
Link: https://lore.kernel.org/r/20240315092914.2431214-1-colin.i.king@gmail.com
Diffstat (limited to 'arch')
-rw-r--r-- | arch/riscv/kvm/vcpu_onereg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/riscv/kvm/vcpu_onereg.c b/arch/riscv/kvm/vcpu_onereg.c index f4a6124d25c9..994adc26db4b 100644 --- a/arch/riscv/kvm/vcpu_onereg.c +++ b/arch/riscv/kvm/vcpu_onereg.c @@ -986,7 +986,7 @@ static int copy_isa_ext_reg_indices(const struct kvm_vcpu *vcpu, static inline unsigned long num_isa_ext_regs(const struct kvm_vcpu *vcpu) { - return copy_isa_ext_reg_indices(vcpu, NULL);; + return copy_isa_ext_reg_indices(vcpu, NULL); } static int copy_sbi_ext_reg_indices(struct kvm_vcpu *vcpu, u64 __user *uindices) |