diff mbox

[1/2] powerpc/mpic: make distribute_irqs obey MPIC_SINGLE_DEST_CPU

Message ID 1357947521-26680-1-git-send-email-scottwood@freescale.com (mailing list archive)
State Accepted, archived
Commit 7bd9fc556d8f5752c86fa09cbaa3c1c3ab5da86f
Delegated to: Benjamin Herrenschmidt
Headers show

Commit Message

Scott Wood Jan. 11, 2013, 11:38 p.m. UTC
Previously we were setting an illegal configuration on mpc85xx
MPICs if CONFIG_IRQ_ALL_CPUS is enabled (which for some reason it is
in mpc85xx_smp_defconfig).

Signed-off-by: Scott Wood <scottwood@freescale.com>
---
 arch/powerpc/sysdev/mpic.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/arch/powerpc/sysdev/mpic.c b/arch/powerpc/sysdev/mpic.c
index 3b2efd4..6694425 100644
--- a/arch/powerpc/sysdev/mpic.c
+++ b/arch/powerpc/sysdev/mpic.c
@@ -54,7 +54,7 @@  static DEFINE_RAW_SPINLOCK(mpic_lock);
 
 #ifdef CONFIG_PPC32	/* XXX for now */
 #ifdef CONFIG_IRQ_ALL_CPUS
-#define distribute_irqs	(1)
+#define distribute_irqs	(!(mpic->flags & MPIC_SINGLE_DEST_CPU))
 #else
 #define distribute_irqs	(0)
 #endif