fix asm-x86/{posix_types,unistd}.h
Jeff Chua reported that:
Commit e40c0fe6b0
(x86: cleanup duplicate includes) turned the userspace
asm-x86/posix_types.h and asm-x86/unistd.h headers into
empty files.
This patch reverts these bogus changes.
Reported-by: Jeff Chua <jeff.chua.linux@gmail.com>
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
5065dbafc2
commit
b11caa7c70
2 changed files with 14 additions and 2 deletions
|
@ -1,5 +1,11 @@
|
||||||
#ifdef __KERNEL__
|
#ifdef __KERNEL__
|
||||||
# if defined(CONFIG_X86_32) || defined(__i386__)
|
# ifdef CONFIG_X86_32
|
||||||
|
# include "posix_types_32.h"
|
||||||
|
# else
|
||||||
|
# include "posix_types_64.h"
|
||||||
|
# endif
|
||||||
|
#else
|
||||||
|
# ifdef __i386__
|
||||||
# include "posix_types_32.h"
|
# include "posix_types_32.h"
|
||||||
# else
|
# else
|
||||||
# include "posix_types_64.h"
|
# include "posix_types_64.h"
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
#ifdef __KERNEL__
|
#ifdef __KERNEL__
|
||||||
# if defined(CONFIG_X86_32) || defined(__i386__)
|
# ifdef CONFIG_X86_32
|
||||||
|
# include "unistd_32.h"
|
||||||
|
# else
|
||||||
|
# include "unistd_64.h"
|
||||||
|
# endif
|
||||||
|
#else
|
||||||
|
# ifdef __i386__
|
||||||
# include "unistd_32.h"
|
# include "unistd_32.h"
|
||||||
# else
|
# else
|
||||||
# include "unistd_64.h"
|
# include "unistd_64.h"
|
||||||
|
|
Loading…
Add table
Reference in a new issue