Linux Audio

Check our new training course

Loading...
v6.8
 1/* SPDX-License-Identifier: GPL-2.0 */
 2/*
 3 * flat.h -- uClinux flat-format executables
 4 */
 5
 6#ifndef __M68KNOMMU_FLAT_H__
 7#define __M68KNOMMU_FLAT_H__
 8
 9#include <asm-generic/flat.h>
 
 
 
 
 
10
11#define FLAT_PLAT_INIT(regs) \
12	do { \
13		if (current->mm) \
14			(regs)->d5 = current->mm->start_data; \
15	} while (0)
16
17#endif /* __M68KNOMMU_FLAT_H__ */
v3.5.6
 
 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_argvp_envp_on_stack()		1
 9#define	flat_old_ram_flag(flags)		(flags)
10#define	flat_reloc_valid(reloc, size)		((reloc) <= (size))
11#define	flat_get_addr_from_rp(rp, relval, flags, p)	get_unaligned(rp)
12#define	flat_put_addr_at_rp(rp, val, relval)	put_unaligned(val,rp)
13#define	flat_get_relocate_addr(rel)		(rel)
14
15static inline int flat_set_persistent(unsigned long relval,
16				      unsigned long *persistent)
17{
18	return 0;
19}
20
21#endif /* __M68KNOMMU_FLAT_H__ */