blob: e3ad5c72724afd627fb906ba37239a0f8fdf024b [file] [log] [blame]
Al Viroe1b5bb62013-01-21 17:16:07 -05001#ifndef _ASM_POWERPC_LINKAGE_H
2#define _ASM_POWERPC_LINKAGE_H
3
4#ifdef CONFIG_PPC64
Anton Blanchard7167af72014-02-04 16:07:20 +11005#if !defined(_CALL_ELF) || _CALL_ELF != 2
Al Viroe1b5bb62013-01-21 17:16:07 -05006#define cond_syscall(x) \
7 asm ("\t.weak " #x "\n\t.set " #x ", sys_ni_syscall\n" \
8 "\t.weak ." #x "\n\t.set ." #x ", .sys_ni_syscall\n")
9#define SYSCALL_ALIAS(alias, name) \
10 asm ("\t.globl " #alias "\n\t.set " #alias ", " #name "\n" \
11 "\t.globl ." #alias "\n\t.set ." #alias ", ." #name)
12#endif
Anton Blanchard7167af72014-02-04 16:07:20 +110013#endif
Al Viroe1b5bb62013-01-21 17:16:07 -050014
15#endif /* _ASM_POWERPC_LINKAGE_H */