https://github.com/torvalds/linux
Raw File
Tip revision: fdf0eaf11452d72945af31804e2a1048ee1b574c authored by Linus Torvalds on 16 July 2023, 22:10:37 UTC
Linux 6.5-rc2
Tip revision: fdf0eaf
flat.h
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * flat.h -- uClinux flat-format executables
 */

#ifndef __M68KNOMMU_FLAT_H__
#define __M68KNOMMU_FLAT_H__

#include <asm-generic/flat.h>

#define FLAT_PLAT_INIT(regs) \
	do { \
		if (current->mm) \
			(regs)->d5 = current->mm->start_data; \
	} while (0)

#endif /* __M68KNOMMU_FLAT_H__ */
back to top