diff options
author | Marc Zyngier <maz@kernel.org> | 2019-08-25 12:44:17 +0300 |
---|---|---|
committer | Marc Zyngier <maz@kernel.org> | 2019-08-25 13:02:13 +0300 |
commit | 926c61568d0b2e57254e92290369d4539568f8cc (patch) | |
tree | 80ef7ac8afc0159f3e2322731138fa2172e80435 /virt | |
parent | 07ab0f8d9a129add914aff3e988da4033471dfc0 (diff) | |
download | linux-926c61568d0b2e57254e92290369d4539568f8cc.tar.xz |
KVM: arm/arm64: vgic: Remove spurious semicolons
Detected by Coccinelle (and Will Deacon) using
scripts/coccinelle/misc/semicolon.cocci.
Reported-by: Will Deacon <will@kernel.org>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Diffstat (limited to 'virt')
-rw-r--r-- | virt/kvm/arm/vgic/vgic-init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/virt/kvm/arm/vgic/vgic-init.c b/virt/kvm/arm/vgic/vgic-init.c index 80127ca9269f..9175bfd83263 100644 --- a/virt/kvm/arm/vgic/vgic-init.c +++ b/virt/kvm/arm/vgic/vgic-init.c @@ -510,7 +510,7 @@ int kvm_vgic_hyp_init(void) break; default: ret = -ENODEV; - }; + } if (ret) return ret; |