diff options
author | Al Viro <viro@www.linux.org.uk> | 2005-08-23 22:46:31 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-08-23 18:43:42 -0700 |
commit | c4457fb9010765620faebccf4daf83b288295154 (patch) | |
tree | 98ae2b1d142204167dacefc4ef10ab1f473260b3 /arch | |
parent | ee449f514d2af21f3422c29702e6b0995c4c2a9c (diff) | |
download | linux-3.10-c4457fb9010765620faebccf4daf83b288295154.tar.gz linux-3.10-c4457fb9010765620faebccf4daf83b288295154.tar.bz2 linux-3.10-c4457fb9010765620faebccf4daf83b288295154.zip |
[PATCH] Kconfig fix (IRQ_ALL_CPUS vs. MV64360)
MV64360 does not support IRQ_ALL_CPUS - see arch/ppc/kernel/mv64360_pic.c.
Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/ppc/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ppc/Kconfig b/arch/ppc/Kconfig index f2900f82f89..01533303312 100644 --- a/arch/ppc/Kconfig +++ b/arch/ppc/Kconfig @@ -931,7 +931,7 @@ config SMP config IRQ_ALL_CPUS bool "Distribute interrupts on all CPUs by default" - depends on SMP + depends on SMP && !MV64360 help This option gives the kernel permission to distribute IRQs across multiple CPUs. Saying N here will route all IRQs to the first |