]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
x86_64: uml: fix rename header guard
authorHiroshi Shimamoto <h-shimamoto@ct.jp.nec.com>
Fri, 15 Aug 2008 00:25:37 +0000 (17:25 -0700)
committerIngo Molnar <mingo@elte.hu>
Fri, 15 Aug 2008 10:25:34 +0000 (12:25 +0200)
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>
arch/um/sys-x86_64/syscall_table.c

index c128eb89700804c62f275077147d8d879146ffa7..32f5fbe2d0d2fe2aca4a7f3b5eeec80b3eb6d87d 100644 (file)
 #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);