diff options
author | H. Peter Anvin <hpa@linux.intel.com> | 2011-11-12 00:48:42 +0100 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2011-11-17 22:35:35 +0100 |
commit | e79a7fccfb2ab10f8753ac634a1c8473e870ae6c (patch) | |
tree | 9a9ebe1068f4d0a04e44c43ff2cf1833f0cda9d0 /arch/x86/ia32/Makefile | |
parent | x86-64, syscall: Adjust comment spacing and remove typo (diff) | |
download | linux-e79a7fccfb2ab10f8753ac634a1c8473e870ae6c.tar.xz linux-e79a7fccfb2ab10f8753ac634a1c8473e870ae6c.zip |
x86-64, ia32: Move compat_ni_syscall into C and its own file
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>
Diffstat (limited to 'arch/x86/ia32/Makefile')
-rw-r--r-- | arch/x86/ia32/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/ia32/Makefile b/arch/x86/ia32/Makefile index 52d0ccfcf6ea..eea9a1c77d38 100644 --- a/arch/x86/ia32/Makefile +++ b/arch/x86/ia32/Makefile @@ -3,6 +3,7 @@ # obj-$(CONFIG_IA32_EMULATION) := ia32entry.o sys_ia32.o ia32_signal.o +obj-$(CONFIG_IA32_EMULATION) += nosyscall.o sysv-$(CONFIG_SYSVIPC) := ipc32.o obj-$(CONFIG_IA32_EMULATION) += $(sysv-y) |