diff options
author | Olof Johansson | 2012-01-16 22:46:06 -0800 |
---|---|---|
committer | Olof Johansson | 2012-01-16 22:46:06 -0800 |
commit | 8b0f6d12de91345190f234edba781b2fd03257b6 (patch) | |
tree | 4b6015433a0ffe5fc7ff9115014e3da580581f4b /arch/arm/include | |
parent | 916e5ebb9f5a154bb845d555a1a84ef48411b73a (diff) | |
parent | efb963dcd9854c70667cdba9b5854b7290f1cefd (diff) |
Merge branch 'fixes-for-arm-soc' of git://sources.calxeda.com/kernel/linux into fixes
* 'fixes-for-arm-soc' of git://sources.calxeda.com/kernel/linux:
ARM: make BSYM macro assembly only
ARM: highbank: remove incorrect BSYM usage
ARM: imx: remove incorrect BSYM usage
ARM: exynos: remove incorrect BSYM usage
ARM: ux500: add missing ENDPROC to headsmp.S
ARM: msm: Add missing ENDPROC to headsmp.S
ARM: versatile: Add missing ENDPROC to headsmp.S
Diffstat (limited to 'arch/arm/include')
-rw-r--r-- | arch/arm/include/asm/unified.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/include/asm/unified.h b/arch/arm/include/asm/unified.h index bc631161e9c6..f5989f46b4d2 100644 --- a/arch/arm/include/asm/unified.h +++ b/arch/arm/include/asm/unified.h @@ -37,8 +37,8 @@ #define THUMB(x...) x #ifdef __ASSEMBLY__ #define W(instr) instr.w -#endif #define BSYM(sym) sym + 1 +#endif #else /* !CONFIG_THUMB2_KERNEL */ @@ -49,8 +49,8 @@ #define THUMB(x...) #ifdef __ASSEMBLY__ #define W(instr) instr -#endif #define BSYM(sym) sym +#endif #endif /* CONFIG_THUMB2_KERNEL */ |