diff options
author | Mike Travis <travis@sgi.com> | 2009-01-11 12:22:58 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-11 13:13:45 -0500 |
commit | 92296c6d6e908c35fca287a21af27be814af9c75 (patch) | |
tree | ba4a85a77b5bb3b609348dafafb710d567d1810a /arch/x86 | |
parent | 542d865bbed4ce1f050f586e53cf1cfadda93766 (diff) |
cpumask, irq: non-x86 build failures
Ingo Molnar wrote:
> All non-x86 architectures fail to build:
>
> In file included from /home/mingo/tip/include/linux/random.h:11,
> from /home/mingo/tip/include/linux/stackprotector.h:6,
> from /home/mingo/tip/init/main.c:17:
> /home/mingo/tip/include/linux/irqnr.h:26:63: error: asm/irq_vectors.h: No such file or directory
Do not include asm/irq_vectors.h in generic code - it's not available
on all architectures.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/include/asm/apicdef.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/arch/x86/include/asm/apicdef.h b/arch/x86/include/asm/apicdef.h index 1a6454ef7f6c..63134e31e8b9 100644 --- a/arch/x86/include/asm/apicdef.h +++ b/arch/x86/include/asm/apicdef.h | |||
@@ -132,8 +132,12 @@ | |||
132 | #define APIC_BASE_MSR 0x800 | 132 | #define APIC_BASE_MSR 0x800 |
133 | #define X2APIC_ENABLE (1UL << 10) | 133 | #define X2APIC_ENABLE (1UL << 10) |
134 | 134 | ||
135 | /* get MAX_IO_APICS */ | 135 | #ifdef CONFIG_X86_32 |
136 | #include <asm/apicnum.h> | 136 | # define MAX_IO_APICS 64 |
137 | #else | ||
138 | # define MAX_IO_APICS 128 | ||
139 | # define MAX_LOCAL_APIC 32768 | ||
140 | #endif | ||
137 | 141 | ||
138 | /* | 142 | /* |
139 | * All x86-64 systems are xAPIC compatible. | 143 | * All x86-64 systems are xAPIC compatible. |