From: Tomasz Nowicki Date: Thu, 27 Nov 2014 17:09:32 +0000 (+0100) Subject: ACPI, GICv3: Allow to map irq for non-hierarchical doamin. X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=fdb2e4de67bfe802fccbfd898dce803672426cd7;p=people%2Fjulieng%2Flinux-arm.git ACPI, GICv3: Allow to map irq for non-hierarchical doamin. Signed-off-by: Tomasz Nowicki Signed-off-by: Vadim Lomovtsev --- diff --git a/drivers/irqchip/irq-gic-v3.c b/drivers/irqchip/irq-gic-v3.c index 90ec0f00805c..e089065b58c0 100644 --- a/drivers/irqchip/irq-gic-v3.c +++ b/drivers/irqchip/irq-gic-v3.c @@ -798,6 +798,7 @@ static void gic_irq_domain_free(struct irq_domain *domain, unsigned int virq, } static const struct irq_domain_ops gic_irq_domain_ops = { + .map = gic_irq_domain_map, .xlate = gic_irq_domain_xlate, .alloc = gic_irq_domain_alloc, .free = gic_irq_domain_free,