mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 01:08:03 -04:00
8 lines
217 B
C
8 lines
217 B
C
#ifndef __ASM_LINKAGE_H
|
|
#define __ASM_LINKAGE_H
|
|
|
|
#define cond_syscall(x) asm(".weak\t" #x "\n" #x " = sys_ni_syscall")
|
|
#define SYSCALL_ALIAS(alias, name) \
|
|
asm ( #alias " = " #name "\n\t.globl " #alias)
|
|
|
|
#endif
|