Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

x86, alternative: Add header guards to <asm/alternative-asm.h>

Add header guards to protect <asm/alternative-asm.h> against multiple
inclusion.

Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Link: http://lkml.kernel.org/r/1348256595-29119-6-git-send-email-hpa@linux.intel.com

+5
+5
arch/x86/include/asm/alternative-asm.h
··· 1 + #ifndef _ASM_X86_ALTERNATIVE_ASM_H 2 + #define _ASM_X86_ALTERNATIVE_ASM_H 3 + 1 4 #ifdef __ASSEMBLY__ 2 5 3 6 #include <asm/asm.h> ··· 27 24 .endm 28 25 29 26 #endif /* __ASSEMBLY__ */ 27 + 28 + #endif /* _ASM_X86_ALTERNATIVE_ASM_H */