diff options
Diffstat (limited to 'arch/arm/include/asm/flat.h')
| -rw-r--r-- | arch/arm/include/asm/flat.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/arm/include/asm/flat.h b/arch/arm/include/asm/flat.h new file mode 100644 index 000000000000..1d77e51907f6 --- /dev/null +++ b/arch/arm/include/asm/flat.h | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | /* | ||
| 2 | * arch/arm/include/asm/flat.h -- uClinux flat-format executables | ||
| 3 | */ | ||
| 4 | |||
| 5 | #ifndef __ARM_FLAT_H__ | ||
| 6 | #define __ARM_FLAT_H__ | ||
| 7 | |||
| 8 | /* An odd number of words will be pushed after this alignment, so | ||
| 9 | deliberately misalign the value. */ | ||
| 10 | #define flat_stack_align(sp) sp = (void *)(((unsigned long)(sp) - 4) | 4) | ||
| 11 | #define flat_argvp_envp_on_stack() 1 | ||
| 12 | #define flat_old_ram_flag(flags) (flags) | ||
| 13 | #define flat_reloc_valid(reloc, size) ((reloc) <= (size)) | ||
| 14 | #define flat_get_addr_from_rp(rp, relval, flags, persistent) get_unaligned(rp) | ||
| 15 | #define flat_put_addr_at_rp(rp, val, relval) put_unaligned(val,rp) | ||
| 16 | #define flat_get_relocate_addr(rel) (rel) | ||
| 17 | #define flat_set_persistent(relval, p) 0 | ||
| 18 | |||
| 19 | #endif /* __ARM_FLAT_H__ */ | ||
