diff options
author | Will Deacon | 2012-12-12 19:13:42 +0000 |
---|---|---|
committer | Will Deacon | 2013-01-10 21:10:20 +0000 |
commit | 6d63f6466da4385f08a2a1b47779704bf60702b1 (patch) | |
tree | 6526d47ed00c764d55f3340bc7cc583d78674abf | |
parent | 9931faca02c604c22335f5a935a501bb2ace6e20 (diff) |
ARM: opcodes: add missing include of linux/linkage.h
opcodes.h wants to declare an asmlinkage function, so we need to include
linux/linkage.h
Acked-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Dave Martin <dave.martin@linaro.org>
Signed-off-by: Will Deacon <will.deacon@arm.com>
-rw-r--r-- | arch/arm/include/asm/opcodes.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/include/asm/opcodes.h b/arch/arm/include/asm/opcodes.h index 74e211a6fb24..e796c598513b 100644 --- a/arch/arm/include/asm/opcodes.h +++ b/arch/arm/include/asm/opcodes.h @@ -10,6 +10,7 @@ #define __ASM_ARM_OPCODES_H #ifndef __ASSEMBLY__ +#include <linux/linkage.h> extern asmlinkage unsigned int arm_check_condition(u32 opcode, u32 psr); #endif |