diff options
Diffstat (limited to 'arch/arm/include/asm/assembler.h')
| -rw-r--r-- | arch/arm/include/asm/assembler.h | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/include/asm/assembler.h b/arch/arm/include/asm/assembler.h index bc2d2d75f70..65c3f2474f5 100644 --- a/arch/arm/include/asm/assembler.h +++ b/arch/arm/include/asm/assembler.h @@ -13,6 +13,9 @@   *  Do not include any C declarations in this file - it is included by   *  assembler source.   */ +#ifndef __ASM_ASSEMBLER_H__ +#define __ASM_ASSEMBLER_H__ +  #ifndef __ASSEMBLY__  #error "Only include this from assembly code"  #endif @@ -290,3 +293,4 @@  	.macro	ldrusr, reg, ptr, inc, cond=al, rept=1, abort=9001f  	usracc	ldr, \reg, \ptr, \inc, \cond, \rept, \abort  	.endm +#endif /* __ASM_ASSEMBLER_H__ */  |