diff options
author | Vegard Nossum <vegard.nossum@gmail.com> | 2008-07-22 21:53:53 +0200 |
---|---|---|
committer | Vegard Nossum <vegard.nossum@gmail.com> | 2008-07-22 21:53:53 +0200 |
commit | a31863168660c6b6f6c7ffe05bb6a38e97803326 (patch) | |
tree | f027f581a10302504520809d1d45293595bc849e /arch/x86/kernel/syscall_64.c | |
parent | 77ef50a522717fa040636ee1017179ceba12ff62 (diff) | |
download | op-kernel-dev-a31863168660c6b6f6c7ffe05bb6a38e97803326.zip op-kernel-dev-a31863168660c6b6f6c7ffe05bb6a38e97803326.tar.gz |
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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/syscall_64.c b/arch/x86/kernel/syscall_64.c index 170d43c..3d1be4f 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); |