diff options
author | Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com> | 2008-08-14 17:25:37 -0700 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-08-15 12:25:34 +0200 |
commit | b76d69ed721e8365739c3bd5dd7891efbea88494 (patch) | |
tree | 3d8c30207989d09fde8ffb2c3c44c6b923d70062 /arch/um | |
parent | 881b374705f352725ba1f558968ef34c17ba900e (diff) | |
download | linux-3.10-b76d69ed721e8365739c3bd5dd7891efbea88494.tar.gz linux-3.10-b76d69ed721e8365739c3bd5dd7891efbea88494.tar.bz2 linux-3.10-b76d69ed721e8365739c3bd5dd7891efbea88494.zip |
x86_64: uml: fix rename header guard
In unistd_64.h, the guard macro _ASM_X86_64_UNISTD_H_ is renamed to
ASM_X86__UNISTD_64_H.
This change should be applied to arch/um/sys-x86_64/syscall_table.c.
Signed-off-by: Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/um')
-rw-r--r-- | arch/um/sys-x86_64/syscall_table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/um/sys-x86_64/syscall_table.c b/arch/um/sys-x86_64/syscall_table.c index c128eb89700..32f5fbe2d0d 100644 --- a/arch/um/sys-x86_64/syscall_table.c +++ b/arch/um/sys-x86_64/syscall_table.c @@ -41,12 +41,12 @@ #define stub_rt_sigreturn sys_rt_sigreturn #define __SYSCALL(nr, sym) extern asmlinkage void sym(void) ; -#undef _ASM_X86_64_UNISTD_H_ +#undef ASM_X86__UNISTD_64_H #include <asm-x86/unistd_64.h> #undef __SYSCALL #define __SYSCALL(nr, sym) [ nr ] = sym, -#undef _ASM_X86_64_UNISTD_H_ +#undef ASM_X86__UNISTD_64_H typedef void (*sys_call_ptr_t)(void); |