diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-10-23 03:20:33 -0400 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-10-23 03:20:33 -0400 |
commit | 5e1b00758b5a8bee9d42515bffdaf305a32f1b04 (patch) | |
tree | 730c92bebd4e1918cd8ba7a76b4e50278d2e90eb | |
parent | 05e4d3169bd16229d84a2ef095e1ba2cd3873baa (diff) |
x86: canonicalize remaining header guards
Canonicalize a few remaining header guards, with the exception for
those which are still in subarchitecture directories.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r-- | arch/x86/include/asm/gpio.h | 4 | ||||
-rw-r--r-- | arch/x86/include/asm/irq_remapping.h | 6 | ||||
-rw-r--r-- | arch/x86/include/asm/syscall.h | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/arch/x86/include/asm/gpio.h b/arch/x86/include/asm/gpio.h index 1c07aad9624e..49dbfdfa50f9 100644 --- a/arch/x86/include/asm/gpio.h +++ b/arch/x86/include/asm/gpio.h | |||
@@ -13,8 +13,8 @@ | |||
13 | * (at your option) any later version. | 13 | * (at your option) any later version. |
14 | */ | 14 | */ |
15 | 15 | ||
16 | #ifndef _ASM_I386_GPIO_H | 16 | #ifndef _ASM_X86_GPIO_H |
17 | #define _ASM_I386_GPIO_H | 17 | #define _ASM_X86_GPIO_H |
18 | 18 | ||
19 | #include <asm-generic/gpio.h> | 19 | #include <asm-generic/gpio.h> |
20 | 20 | ||
diff --git a/arch/x86/include/asm/irq_remapping.h b/arch/x86/include/asm/irq_remapping.h index 78242c6ffa58..20e1fd588dbf 100644 --- a/arch/x86/include/asm/irq_remapping.h +++ b/arch/x86/include/asm/irq_remapping.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef _ASM_IRQ_REMAPPING_H | 1 | #ifndef _ASM_X86_IRQ_REMAPPING_H |
2 | #define _ASM_IRQ_REMAPPING_H | 2 | #define _ASM_X86_IRQ_REMAPPING_H |
3 | 3 | ||
4 | extern int x2apic; | 4 | extern int x2apic; |
5 | 5 | ||
6 | #define IRTE_DEST(dest) ((x2apic) ? dest : dest << 8) | 6 | #define IRTE_DEST(dest) ((x2apic) ? dest : dest << 8) |
7 | 7 | ||
8 | #endif | 8 | #endif /* _ASM_X86_IRQ_REMAPPING_H */ |
diff --git a/arch/x86/include/asm/syscall.h b/arch/x86/include/asm/syscall.h index 04c47dc5597c..1d88f6957d39 100644 --- a/arch/x86/include/asm/syscall.h +++ b/arch/x86/include/asm/syscall.h | |||
@@ -10,8 +10,8 @@ | |||
10 | * See asm-generic/syscall.h for descriptions of what we must do here. | 10 | * See asm-generic/syscall.h for descriptions of what we must do here. |
11 | */ | 11 | */ |
12 | 12 | ||
13 | #ifndef _ASM_SYSCALL_H | 13 | #ifndef _ASM_X86_SYSCALL_H |
14 | #define _ASM_SYSCALL_H 1 | 14 | #define _ASM_X86_SYSCALL_H |
15 | 15 | ||
16 | #include <linux/sched.h> | 16 | #include <linux/sched.h> |
17 | #include <linux/err.h> | 17 | #include <linux/err.h> |
@@ -208,4 +208,4 @@ static inline void syscall_set_arguments(struct task_struct *task, | |||
208 | 208 | ||
209 | #endif /* CONFIG_X86_32 */ | 209 | #endif /* CONFIG_X86_32 */ |
210 | 210 | ||
211 | #endif /* _ASM_SYSCALL_H */ | 211 | #endif /* _ASM_X86_SYSCALL_H */ |