diff options
| author | Dave Martin <dave.martin@linaro.org> | 2011-06-23 20:10:05 +0400 | 
|---|---|---|
| committer | Dave Martin <dave.martin@linaro.org> | 2011-07-07 18:31:05 +0400 | 
| commit | 8f51965e7033441cb10ce577d1ef2d580a80af08 (patch) | |
| tree | a8106696132fb714fc2998dbc624904fed9913f3 /arch/arm/include/asm/assembler.h | |
| parent | 66a625a88174664fc252d7b1ac1773e76e52326b (diff) | |
| download | linux-8f51965e7033441cb10ce577d1ef2d580a80af08.tar.xz | |
ARM: assembler.h: Add string declaration macro
Declaring strings in assembler source involves a certain amount of
tedious boilerplate code in order to annotate the resulting symbol
correctly.
Encapsulating this boilerplate in a macro should help to avoid some
duplication and the occasional mistake.
Signed-off-by: Dave Martin <dave.martin@linaro.org>
Acked-by: Nicolas Pitre <nicolas.pitre@linaro.org>
Diffstat (limited to 'arch/arm/include/asm/assembler.h')
| -rw-r--r-- | arch/arm/include/asm/assembler.h | 9 | 
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/include/asm/assembler.h b/arch/arm/include/asm/assembler.h index 65c3f2474f5e..29035e86a59d 100644 --- a/arch/arm/include/asm/assembler.h +++ b/arch/arm/include/asm/assembler.h @@ -293,4 +293,13 @@  	.macro	ldrusr, reg, ptr, inc, cond=al, rept=1, abort=9001f  	usracc	ldr, \reg, \ptr, \inc, \cond, \rept, \abort  	.endm + +/* Utility macro for declaring string literals */ +	.macro	string name:req, string +	.type \name , #object +\name: +	.asciz "\string" +	.size \name , . - \name +	.endm +  #endif /* __ASM_ASSEMBLER_H__ */  | 
