mirror of https://gitee.com/openkylin/linux.git
powerpc/pseries: Fix xics build without CONFIG_SMP
desc->affinity doesn't exit in that case. Let's use a macro for the UP variant of get_irq_server(), it's the easiest way, avoids evaluating arguments. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
parent
e90c52e03b
commit
bf647fafda
|
@ -191,11 +191,7 @@ static int get_irq_server(unsigned int virq, cpumask_t cpumask,
|
||||||
return default_server;
|
return default_server;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
static int get_irq_server(unsigned int virq, cpumask_t cpumask,
|
#define get_irq_server(virq, cpumask, strict_check) (default_server)
|
||||||
unsigned int strict_check)
|
|
||||||
{
|
|
||||||
return default_server;
|
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static void xics_unmask_irq(unsigned int virq)
|
static void xics_unmask_irq(unsigned int virq)
|
||||||
|
|
Loading…
Reference in New Issue