diff options
-rw-r--r-- | arch/mips/include/asm/uasm.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/mips/include/asm/uasm.h b/arch/mips/include/asm/uasm.h index f7929f65f7ca..e9a9e2ade1d2 100644 --- a/arch/mips/include/asm/uasm.h +++ b/arch/mips/include/asm/uasm.h | |||
@@ -9,6 +9,9 @@ | |||
9 | * Copyright (C) 2012, 2013 MIPS Technologies, Inc. All rights reserved. | 9 | * Copyright (C) 2012, 2013 MIPS Technologies, Inc. All rights reserved. |
10 | */ | 10 | */ |
11 | 11 | ||
12 | #ifndef __ASM_UASM_H | ||
13 | #define __ASM_UASM_H | ||
14 | |||
12 | #include <linux/types.h> | 15 | #include <linux/types.h> |
13 | 16 | ||
14 | #ifdef CONFIG_EXPORT_UASM | 17 | #ifdef CONFIG_EXPORT_UASM |
@@ -309,3 +312,5 @@ void uasm_il_bltz(u32 **p, struct uasm_reloc **r, unsigned int reg, int lid); | |||
309 | void uasm_il_bne(u32 **p, struct uasm_reloc **r, unsigned int reg1, | 312 | void uasm_il_bne(u32 **p, struct uasm_reloc **r, unsigned int reg1, |
310 | unsigned int reg2, int lid); | 313 | unsigned int reg2, int lid); |
311 | void uasm_il_bnez(u32 **p, struct uasm_reloc **r, unsigned int reg, int lid); | 314 | void uasm_il_bnez(u32 **p, struct uasm_reloc **r, unsigned int reg, int lid); |
315 | |||
316 | #endif /* __ASM_UASM_H */ | ||