diff options
author | James Hogan <james.hogan@imgtec.com> | 2014-05-29 05:16:45 -0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2014-05-30 07:05:59 -0400 |
commit | ee1a725f449d6e631405755f16f3c60c49e8fec5 (patch) | |
tree | c6f076d92b3044b3f65985787b37e06f3a2f826e /arch/mips/kvm | |
parent | c6c0a6637f9da54f9472144d44f71cf847f92e20 (diff) |
MIPS: KVM: Remove redundant semicolon
Remove extra semicolon in kvm_arch_vcpu_dump_regs().
Signed-off-by: James Hogan <james.hogan@imgtec.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Gleb Natapov <gleb@kernel.org>
Cc: kvm@vger.kernel.org
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: linux-mips@linux-mips.org
Cc: Sanjay Lal <sanjayl@kymasys.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/mips/kvm')
-rw-r--r-- | arch/mips/kvm/kvm_mips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kvm/kvm_mips.c b/arch/mips/kvm/kvm_mips.c index eaa81aa15e02..cd5e4f568439 100644 --- a/arch/mips/kvm/kvm_mips.c +++ b/arch/mips/kvm/kvm_mips.c | |||
@@ -923,7 +923,7 @@ int kvm_arch_vcpu_dump_regs(struct kvm_vcpu *vcpu) | |||
923 | return -1; | 923 | return -1; |
924 | 924 | ||
925 | printk("VCPU Register Dump:\n"); | 925 | printk("VCPU Register Dump:\n"); |
926 | printk("\tpc = 0x%08lx\n", vcpu->arch.pc);; | 926 | printk("\tpc = 0x%08lx\n", vcpu->arch.pc); |
927 | printk("\texceptions: %08lx\n", vcpu->arch.pending_exceptions); | 927 | printk("\texceptions: %08lx\n", vcpu->arch.pending_exceptions); |
928 | 928 | ||
929 | for (i = 0; i < 32; i += 4) { | 929 | for (i = 0; i < 32; i += 4) { |