summaryrefslogtreecommitdiff
path: root/arch/x86/kernel/syscall_64.c
diff options
context:
space:
mode:
authorVegard Nossum <vegard.nossum@gmail.com>2008-07-22 21:53:53 +0200
committerVegard Nossum <vegard.nossum@gmail.com>2008-07-22 21:53:53 +0200
commita31863168660c6b6f6c7ffe05bb6a38e97803326 (patch)
treef027f581a10302504520809d1d45293595bc849e /arch/x86/kernel/syscall_64.c
parent77ef50a522717fa040636ee1017179ceba12ff62 (diff)
x86: consolidate header guards
This patch consolidates the header guard names which are also used externally, i.e. in .c files. Signed-off-by: Vegard Nossum <vegard.nossum@gmail.com>
Diffstat (limited to 'arch/x86/kernel/syscall_64.c')
-rw-r--r--arch/x86/kernel/syscall_64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/syscall_64.c b/arch/x86/kernel/syscall_64.c
index 170d43c17487..3d1be4f0fac5 100644
--- a/arch/x86/kernel/syscall_64.c
+++ b/arch/x86/kernel/syscall_64.c
@@ -8,12 +8,12 @@
#define __NO_STUBS
#define __SYSCALL(nr, sym) extern asmlinkage void sym(void) ;
-#undef _ASM_X86_64_UNISTD_H_
+#undef ASM_X86__UNISTD_64_H
#include <asm/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);