From mboxrd@z Thu Jan 1 00:00:00 1970 From: Will Deacon Subject: [PATCH 2/3] kvm tools: arm: fixup pre-processor guards for kvm-cpu-arch.h Date: Wed, 5 Dec 2012 16:32:16 +0000 Message-ID: <1354725137-18077-2-git-send-email-will.deacon@arm.com> References: <1354725137-18077-1-git-send-email-will.deacon@arm.com> Cc: penberg@kernel.org, marc.zyngier@arm.com, Will Deacon To: kvm@vger.kernel.org Return-path: Received: from cam-admin0.cambridge.arm.com ([217.140.96.50]:39224 "EHLO cam-admin0.cambridge.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752534Ab2LEQch (ORCPT ); Wed, 5 Dec 2012 11:32:37 -0500 In-Reply-To: <1354725137-18077-1-git-send-email-will.deacon@arm.com> Sender: kvm-owner@vger.kernel.org List-ID: Cosmetic patch to correct the pre-processor guards for arm in kvm-cpu-arch.h. It's not something to lose sleep over but I find it incredibly irritating! Signed-off-by: Will Deacon --- tools/kvm/arm/include/kvm/kvm-cpu-arch.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/kvm/arm/include/kvm/kvm-cpu-arch.h b/tools/kvm/arm/include/kvm/kvm-cpu-arch.h index 351fbe6..f0aeca2 100644 --- a/tools/kvm/arm/include/kvm/kvm-cpu-arch.h +++ b/tools/kvm/arm/include/kvm/kvm-cpu-arch.h @@ -1,5 +1,5 @@ -#ifndef ARM_COMMON__KVM_CPU_ARCH_H -#define ARM_COMMON__KVM_CPU_ARCH_H +#ifndef KVM__KVM_CPU_ARCH_H +#define KVM__KVM_CPU_ARCH_H #include #include @@ -43,4 +43,4 @@ static inline bool kvm_cpu__emulate_io(struct kvm *kvm, u16 port, void *data, bool kvm_cpu__emulate_mmio(struct kvm *kvm, u64 phys_addr, u8 *data, u32 len, u8 is_write); -#endif /* ARM_COMMON__KVM_CPU_ARCH_H */ +#endif /* KVM__KVM_CPU_ARCH_H */ -- 1.8.0