summaryrefslogtreecommitdiff
path: root/arch/m68k/include/asm/flat.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/m68k/include/asm/flat.h')
-rw-r--r--arch/m68k/include/asm/flat.h20
1 files changed, 8 insertions, 12 deletions
diff --git a/arch/m68k/include/asm/flat.h b/arch/m68k/include/asm/flat.h
index f9454b89a51b..46379e08cdd6 100644
--- a/arch/m68k/include/asm/flat.h
+++ b/arch/m68k/include/asm/flat.h
@@ -1,21 +1,17 @@
+/* SPDX-License-Identifier: GPL-2.0 */
/*
- * include/asm-m68knommu/flat.h -- uClinux flat-format executables
+ * flat.h -- uClinux flat-format executables
*/
#ifndef __M68KNOMMU_FLAT_H__
#define __M68KNOMMU_FLAT_H__
-#define flat_argvp_envp_on_stack() 1
-#define flat_old_ram_flag(flags) (flags)
-#define flat_reloc_valid(reloc, size) ((reloc) <= (size))
-#define flat_get_addr_from_rp(rp, relval, flags, p) get_unaligned(rp)
-#define flat_put_addr_at_rp(rp, val, relval) put_unaligned(val,rp)
-#define flat_get_relocate_addr(rel) (rel)
+#include <asm-generic/flat.h>
-static inline int flat_set_persistent(unsigned long relval,
- unsigned long *persistent)
-{
- return 0;
-}
+#define FLAT_PLAT_INIT(regs) \
+ do { \
+ if (current->mm) \
+ (regs)->d5 = current->mm->start_data; \
+ } while (0)
#endif /* __M68KNOMMU_FLAT_H__ */