Commit b11caa7c authored by Adrian Bunk's avatar Adrian Bunk Committed by Ingo Molnar

fix asm-x86/{posix_types,unistd}.h

Jeff Chua reported that:

Commit e40c0fe6
(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: default avatarJeff Chua <jeff.chua.linux@gmail.com>
Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 5065dbaf
#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"
# else
# include "posix_types_64.h"
......
#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"
# else
# include "unistd_64.h"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment