Signed-off-by: Andrew Jones <drjones@xxxxxxxxxx> --- lib/arm/asm/stack.h | 8 ++++++++ lib/arm64/asm/stack.h | 8 ++++++++ lib/powerpc/asm/stack.h | 8 ++++++++ lib/ppc64/asm/stack.h | 8 ++++++++ 4 files changed, 32 insertions(+) diff --git a/lib/arm/asm/stack.h b/lib/arm/asm/stack.h index e69de29bb2d1d..fe97ac5d4b7d9 100644 --- a/lib/arm/asm/stack.h +++ b/lib/arm/asm/stack.h @@ -0,0 +1,8 @@ +#ifndef _ASMARM_STACK_H_ +#define _ASMARM_STACK_H_ + +#ifndef _STACK_H_ +#error Do not directly include <asm/stack.h>. Just use <stack.h>. +#endif + +#endif diff --git a/lib/arm64/asm/stack.h b/lib/arm64/asm/stack.h index e69de29bb2d1d..d0006242fdaaf 100644 --- a/lib/arm64/asm/stack.h +++ b/lib/arm64/asm/stack.h @@ -0,0 +1,8 @@ +#ifndef _ASMARM64_STACK_H_ +#define _ASMARM64_STACK_H_ + +#ifndef _STACK_H_ +#error Do not directly include <asm/stack.h>. Just use <stack.h>. +#endif + +#endif diff --git a/lib/powerpc/asm/stack.h b/lib/powerpc/asm/stack.h index e69de29bb2d1d..e1c46ee092a10 100644 --- a/lib/powerpc/asm/stack.h +++ b/lib/powerpc/asm/stack.h @@ -0,0 +1,8 @@ +#ifndef _ASMPOWERPC_STACK_H_ +#define _ASMPOWERPC_STACK_H_ + +#ifndef _STACK_H_ +#error Do not directly include <asm/stack.h>. Just use <stack.h>. +#endif + +#endif diff --git a/lib/ppc64/asm/stack.h b/lib/ppc64/asm/stack.h index e69de29bb2d1d..9734bbb8f7bd9 100644 --- a/lib/ppc64/asm/stack.h +++ b/lib/ppc64/asm/stack.h @@ -0,0 +1,8 @@ +#ifndef _ASMPPC64_STACK_H_ +#define _ASMPPC64_STACK_H_ + +#ifndef _STACK_H_ +#error Do not directly include <asm/stack.h>. Just use <stack.h>. +#endif + +#endif -- 2.4.11 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html