summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Zyngier <maz@kernel.org>2019-07-31 11:13:42 -0400
committerMarc Zyngier <maz@kernel.org>2019-08-07 09:24:37 -0400
commit7d5b7695c22f6e22d9a16df17f477832eef8e2b7 (patch)
treee5a8cb67da7c0f66e8cd5e3e4fea3153d76112e1
parent188a8471ef03718709bd785d3976f6cd72bb551d (diff)
irqchip/gic-v2m: Register the frame's PA instead of its VA in fwnode
Do not expose the frame's VA (it appears in debugfs). Instead, record the PA, which at least can be used to precisely identify the associated irqchip and domain. Acked-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Marc Zyngier <maz@kernel.org>
-rw-r--r--drivers/irqchip/irq-gic-v2m.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/irqchip/irq-gic-v2m.c b/drivers/irqchip/irq-gic-v2m.c
index 7338f90b2f9e..e88e75c22b6a 100644
--- a/drivers/irqchip/irq-gic-v2m.c
+++ b/drivers/irqchip/irq-gic-v2m.c
@@ -525,7 +525,7 @@ acpi_parse_madt_msi(union acpi_subtable_headers *header,
525 spi_start, nr_spis); 525 spi_start, nr_spis);
526 } 526 }
527 527
528 fwnode = irq_domain_alloc_fwnode((void *)m->base_address); 528 fwnode = irq_domain_alloc_fwnode(&res.start);
529 if (!fwnode) { 529 if (!fwnode) {
530 pr_err("Unable to allocate GICv2m domain token\n"); 530 pr_err("Unable to allocate GICv2m domain token\n");
531 return -EINVAL; 531 return -EINVAL;