mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
Move compat_ni_syscall out of ia32entry.S and into its own .c file. Although this is a trivial function, it is not performance-critical, and this will simplify further cleanups. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
8 lines
102 B
C
8 lines
102 B
C
#include <linux/kernel.h>
|
|
#include <linux/errno.h>
|
|
|
|
long compat_ni_syscall(void)
|
|
{
|
|
return -ENOSYS;
|
|
}
|