Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e40c7f02 authored by Andy Whitcroft's avatar Andy Whitcroft Committed by Paul Mackerras
Browse files

[PATCH] powerpc32: fix definition of distribute_irqs



When we select ppc32 under the powerpc architecture we get the
error below.  This relates to defining distribute_irqs when this
configuratiom option is undefined.

      CC      arch/powerpc/sysdev/mpic.o
    .../arch/powerpc/sysdev/mpic.c: In function `mpic_setup_this_cpu':
    .../arch/powerpc/sysdev/mpic.c:788: error: `CONFIG_IRQ_ALL_CPUS'
	undeclared (first use in this function)

Signed-off-by: default avatarAndy Whitcroft <apw@shadowen.org>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 9100b205
Loading
Loading
Loading
Loading
+5 −1
Original line number Original line Diff line number Diff line
@@ -45,7 +45,11 @@ static struct mpic *mpic_primary;
static DEFINE_SPINLOCK(mpic_lock);
static DEFINE_SPINLOCK(mpic_lock);


#ifdef CONFIG_PPC32	/* XXX for now */
#ifdef CONFIG_PPC32	/* XXX for now */
#define distribute_irqs	CONFIG_IRQ_ALL_CPUS
#ifdef CONFIG_IRQ_ALL_CPUS
#define distribute_irqs	(1)
#else
#define distribute_irqs	(0)
#endif
#endif
#endif


/*
/*