diff options
author | Paul Mackerras <paulus@samba.org> | 2005-10-11 08:03:09 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-10-11 08:03:09 -0400 |
commit | 35d81a4bfe28a6ea81c9f67c9ce40543124ded0b (patch) | |
tree | 43ed0161b53e0b4c620066c6b1c49d04b13188f5 /arch/ppc/kernel | |
parent | cc5aa206d2c853929ce67d8f5ebb57cd1c7fd413 (diff) |
ppc: Adapt to asm-powerpc/irq.h irq_canonicalize changes
Now instead of having a ppc_md function, we just have a variable
which says whether to do the i8259 irq canonicalization or not,
and set that variable on the platforms that need that. It looks
to me that radstone_ppc7d was trying to use irq canonicalization
for something else in a broken kind of way - it will need to be
fixed properly.
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/ppc/kernel')
-rw-r--r-- | arch/ppc/kernel/setup.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/ppc/kernel/setup.c b/arch/ppc/kernel/setup.c index 62022eacf63e..fae6335193ef 100644 --- a/arch/ppc/kernel/setup.c +++ b/arch/ppc/kernel/setup.c | |||
@@ -87,6 +87,11 @@ extern void chrp_init(unsigned long r3, unsigned long r4, | |||
87 | dev_t boot_dev; | 87 | dev_t boot_dev; |
88 | #endif /* CONFIG_PPC_MULTIPLATFORM */ | 88 | #endif /* CONFIG_PPC_MULTIPLATFORM */ |
89 | 89 | ||
90 | #ifdef __DO_IRQ_CANON | ||
91 | int ppc_do_canonicalize_irqs; | ||
92 | EXPORT_SYMBOL(ppc_do_canonicalize_irqs); | ||
93 | #endif | ||
94 | |||
90 | #ifdef CONFIG_MAGIC_SYSRQ | 95 | #ifdef CONFIG_MAGIC_SYSRQ |
91 | unsigned long SYSRQ_KEY = 0x54; | 96 | unsigned long SYSRQ_KEY = 0x54; |
92 | #endif /* CONFIG_MAGIC_SYSRQ */ | 97 | #endif /* CONFIG_MAGIC_SYSRQ */ |