diff options
Diffstat (limited to 'arch/m68knommu/include/asm/flat.h')
-rw-r--r-- | arch/m68knommu/include/asm/flat.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/m68knommu/include/asm/flat.h b/arch/m68knommu/include/asm/flat.h new file mode 100644 index 000000000000..814b5174a8e0 --- /dev/null +++ b/arch/m68knommu/include/asm/flat.h | |||
@@ -0,0 +1,17 @@ | |||
1 | /* | ||
2 | * include/asm-m68knommu/flat.h -- uClinux flat-format executables | ||
3 | */ | ||
4 | |||
5 | #ifndef __M68KNOMMU_FLAT_H__ | ||
6 | #define __M68KNOMMU_FLAT_H__ | ||
7 | |||
8 | #define flat_stack_align(sp) /* nothing needed */ | ||
9 | #define flat_argvp_envp_on_stack() 1 | ||
10 | #define flat_old_ram_flag(flags) (flags) | ||
11 | #define flat_reloc_valid(reloc, size) ((reloc) <= (size)) | ||
12 | #define flat_get_addr_from_rp(rp, relval, flags, p) get_unaligned(rp) | ||
13 | #define flat_put_addr_at_rp(rp, val, relval) put_unaligned(val,rp) | ||
14 | #define flat_get_relocate_addr(rel) (rel) | ||
15 | #define flat_set_persistent(relval, p) 0 | ||
16 | |||
17 | #endif /* __M68KNOMMU_FLAT_H__ */ | ||