xen/arm: gicv2: Rename gicv2_map_hwdown_extra_mappings
authorMichal Orzel <michal.orzel@arm.com>
Fri, 10 Jun 2022 08:33:57 +0000 (10:33 +0200)
committerStefano Stabellini <stefano.stabellini@xilinx.com>
Fri, 10 Jun 2022 23:29:19 +0000 (16:29 -0700)
... to gicv2_map_hwdom_extra_mappings as the former clearly contains
a typo.

Signed-off-by: Michal Orzel <michal.orzel@arm.com>
[stefano: remove fixes tag]
Signed-off-by: Stefano Stabellini <stefano.stabellini@xilinx.com>
Acked-by: Julien Grall <jgrall@amazon.com>
xen/arch/arm/gic-v2.c

index 2cc2f6bc18cd778e08bd54fd92a744b05936ec9a..bd773bcc672ccd47e1dfc525fa196d92318f738a 100644 (file)
@@ -679,7 +679,7 @@ static void gicv2_irq_set_affinity(struct irq_desc *desc, const cpumask_t *cpu_m
     spin_unlock(&gicv2.lock);
 }
 
-static int gicv2_map_hwdown_extra_mappings(struct domain *d)
+static int gicv2_map_hwdom_extra_mappings(struct domain *d)
 {
     const struct v2m_data *v2m_data;
 
@@ -1352,7 +1352,7 @@ const static struct gic_hw_operations gicv2_ops = {
     .make_hwdom_madt     = gicv2_make_hwdom_madt,
     .get_hwdom_extra_madt_size = gicv2_get_hwdom_extra_madt_size,
 #endif
-    .map_hwdom_extra_mappings = gicv2_map_hwdown_extra_mappings,
+    .map_hwdom_extra_mappings = gicv2_map_hwdom_extra_mappings,
     .iomem_deny_access   = gicv2_iomem_deny_access,
     .do_LPI              = gicv2_do_LPI,
 };