allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / include / asm-arm / flat.h
blob16f5375e57b89256738b094f1d07c6a45733087a
1 /*
2 * include/asm-arm/flat.h -- uClinux flat-format executables
3 */
5 #ifndef __ARM_FLAT_H__
6 #define __ARM_FLAT_H__
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) 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)
18 #endif /* __ARM_FLAT_H__ */