diff options
author | Markus Armbruster <armbru@redhat.com> | 2016-06-29 13:47:03 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2016-07-12 16:20:46 +0200 |
commit | 2a6a4076e117113ebec97b1821071afccfdfbc96 (patch) | |
tree | 349b8c30ac34fa345b5ce59aa1f4271dfe1a6543 /target-mips/kvm_mips.h | |
parent | 965379b4555aef0aaae734a7be139454bb0fcac4 (diff) | |
download | qemu-2a6a4076e117113ebec97b1821071afccfdfbc96.zip qemu-2a6a4076e117113ebec97b1821071afccfdfbc96.tar.gz qemu-2a6a4076e117113ebec97b1821071afccfdfbc96.tar.bz2 |
Clean up ill-advised or unusual header guards
Cleaned up with scripts/clean-header-guards.pl.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target-mips/kvm_mips.h')
-rw-r--r-- | target-mips/kvm_mips.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target-mips/kvm_mips.h b/target-mips/kvm_mips.h index 54f5965..ae957f3 100644 --- a/target-mips/kvm_mips.h +++ b/target-mips/kvm_mips.h @@ -9,8 +9,8 @@ * Authors: Sanjay Lal <sanjayl@kymasys.com> */ -#ifndef __KVM_MIPS_H__ -#define __KVM_MIPS_H__ +#ifndef KVM_MIPS_H +#define KVM_MIPS_H /** * kvm_mips_reset_vcpu: @@ -23,4 +23,4 @@ void kvm_mips_reset_vcpu(MIPSCPU *cpu); int kvm_mips_set_interrupt(MIPSCPU *cpu, int irq, int level); int kvm_mips_set_ipi_interrupt(MIPSCPU *cpu, int irq, int level); -#endif /* __KVM_MIPS_H__ */ +#endif /* KVM_MIPS_H */ |