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

Commit 44626e4a authored by Konrad Rzeszutek Wilk's avatar Konrad Rzeszutek Wilk
Browse files

xen: events: Fix compile error if CONFIG_SMP is not defined.



drivers/xen/events.c:396: error: 'struct irq_data' has no member named 'affinity'

Reported-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: default avatarKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
parent a7b807ce
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -392,8 +392,10 @@ static void xen_irq_init(unsigned irq)
	struct irq_info *info;
	struct irq_desc *desc = irq_to_desc(irq);

#ifdef CONFIG_SMP
	/* By default all event channels notify CPU#0. */
	cpumask_copy(desc->irq_data.affinity, cpumask_of(0));
#endif

	info = kzalloc(sizeof(*info), GFP_KERNEL);
	if (info == NULL)