Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

c6x: asm: Add default flat.h according to xtensa architecture

For supporting uClinux flat-format executables, c6x needs to define the
fewest features to support it, at present, xtensa architecture has the
fewest feature for it, so just copy xtensa flat.h. The related error:

CC fs/binfmt_flat.o
In file included from fs/binfmt_flat.c:36:0:
include/linux/flat.h:12:22: fatal error: asm/flat.h: No such file or directory

Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
Signed-off-by: Mark Salter <msalter@redhat.com>

authored by

Chen Gang and committed by
Mark Salter
06745d74 1a394e1a

+12
+12
arch/c6x/include/asm/flat.h
··· 1 + #ifndef __ASM_C6X_FLAT_H 2 + #define __ASM_C6X_FLAT_H 3 + 4 + #define flat_argvp_envp_on_stack() 0 5 + #define flat_old_ram_flag(flags) (flags) 6 + #define flat_reloc_valid(reloc, size) ((reloc) <= (size)) 7 + #define flat_get_addr_from_rp(rp, relval, flags, p) get_unaligned(rp) 8 + #define flat_put_addr_at_rp(rp, val, relval) put_unaligned(val, rp) 9 + #define flat_get_relocate_addr(rel) (rel) 10 + #define flat_set_persistent(relval, p) 0 11 + 12 + #endif /* __ASM_C6X_FLAT_H */