From: Benjamin Herrenschmidt Date: Fri, 15 Feb 2019 17:00:21 +0000 (+0100) Subject: target/ppc: Fix #include guard in mmu-book3s-v3.h X-Git-Tag: v4.0.0-rc0~77^2~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2819282dae6c38b2c9d5499ad748b1471f26af1a;p=thirdparty%2Fqemu.git target/ppc: Fix #include guard in mmu-book3s-v3.h Signed-off-by: Benjamin Herrenschmidt Signed-off-by: Cédric Le Goater Message-Id: <20190215170029.15641-5-clg@kaod.org> Signed-off-by: David Gibson --- diff --git a/target/ppc/mmu-book3s-v3.h b/target/ppc/mmu-book3s-v3.h index 41b77158622..12ec0054c20 100644 --- a/target/ppc/mmu-book3s-v3.h +++ b/target/ppc/mmu-book3s-v3.h @@ -17,8 +17,8 @@ * License along with this library; if not, see . */ -#ifndef MMU_H -#define MMU_H +#ifndef MMU_BOOOK3S_V3_H +#define MMU_BOOOK3S_V3_H #ifndef CONFIG_USER_ONLY @@ -62,4 +62,4 @@ int ppc64_v3_handle_mmu_fault(PowerPCCPU *cpu, vaddr eaddr, int rwx, #endif /* CONFIG_USER_ONLY */ -#endif /* MMU_H */ +#endif /* MMU_BOOOK3S_V3_H */