]> xenbits.xensource.com Git - xen.git/commitdiff
xen/arm: Small fixes after GICv2 changes by commit ee65c87
authorJulien Grall <julien.grall@linaro.org>
Wed, 2 Jul 2014 13:19:20 +0000 (14:19 +0100)
committerIan Campbell <ian.campbell@citrix.com>
Thu, 3 Jul 2014 10:34:04 +0000 (11:34 +0100)
The commit ee65c87 moves the GICv2 code in a separate file. Even though this
patch is only deals with code movement, a comment was modify for no reason.

Also rename gicv_v2_init into gicv2v_setup which is what the function does
and less confusing with the other function called gicv2_init.

Signed-off-by: Julien Grall <julien.grall@linaro.org>
Acked-by: Ian Campbell <ian.campbell@citrix.com>
xen/arch/arm/gic-v2.c

index 695c2325407066d62434710c475fc207244ce9fc..cc60af8235c2b50438aeb2242ea8a0cf3acd854f 100644 (file)
@@ -372,12 +372,12 @@ static void gicv2_clear_lr(int lr)
     writel_relaxed(0, GICH + GICH_LR + lr * 4);
 }
 
-static int gicv_v2_init(struct domain *d)
+static int gicv2v_setup(struct domain *d)
 {
     int ret;
 
     /*
-     * Domain 0 gets the hardware address.
+     * The hardware domain gets the hardware address.
      * Guests get the virtual platform layout.
      */
     if ( is_hardware_domain(d) )
@@ -566,7 +566,7 @@ const static struct gic_hw_operations gicv2_ops = {
     .save_state          = gicv2_save_state,
     .restore_state       = gicv2_restore_state,
     .dump_state          = gicv2_dump_state,
-    .gicv_setup          = gicv_v2_init,
+    .gicv_setup          = gicv2v_setup,
     .gic_host_irq_type   = &gicv2_host_irq_type,
     .gic_guest_irq_type  = &gicv2_guest_irq_type,
     .eoi_irq             = gicv2_eoi_irq,