/* SPDX-License-Identifier: GPL-2.0 */1/*2* Copyright (C) 2008-2009 Michal Simek <[email protected]>3* Copyright (C) 2008-2009 PetaLogix4* Copyright (C) 2006 Atmark Techno, Inc.5*/6#ifndef _ASM_MICROBLAZE_ELF_H7#define _ASM_MICROBLAZE_ELF_H89#include <uapi/asm/elf.h>1011#ifndef __uClinux__12#ifndef ELF_GREG_T13#endif14#ifndef ELF_NGREG15#endif16#ifndef ELF_GREGSET_T17#endif18#ifndef ELF_FPREGSET_T19#endif20#ifdef __MICROBLAZEEL__21#else22#endif23#define SET_PERSONALITY(ex) \24set_personality(PER_LINUX_32BIT | (current->personality & (~PER_MASK)))25#endif /* __uClinux__ */26#endif /* _ASM_MICROBLAZE_ELF_H */272829