diff mbox

[Xen-devel] xen/arm: Small fixes after GICv2 changes by commit ee65c87

Message ID 1404304489-24396-1-git-send-email-julien.grall@linaro.org
State Superseded, archived
Headers show

Commit Message

Julien Grall July 2, 2014, 12:34 p.m. UTC
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 gic_v2_init into gicv2_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>
---
 xen/arch/arm/gic-v2.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Julien Grall July 2, 2014, 1:14 p.m. UTC | #1
On 07/02/2014 01:34 PM, Julien Grall wrote:
> 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 gic_v2_init into gicv2_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>
> ---
>  xen/arch/arm/gic-v2.c |    4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/xen/arch/arm/gic-v2.c b/xen/arch/arm/gic-v2.c
> index 695c232..74c72d6 100644
> --- a/xen/arch/arm/gic-v2.c
> +++ b/xen/arch/arm/gic-v2.c
> @@ -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 gicv2_setup(struct domain *d)

Hmmmm... I forgot to modify the caller. :/ I will send a v2 right now.
diff mbox

Patch

diff --git a/xen/arch/arm/gic-v2.c b/xen/arch/arm/gic-v2.c
index 695c232..74c72d6 100644
--- a/xen/arch/arm/gic-v2.c
+++ b/xen/arch/arm/gic-v2.c
@@ -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 gicv2_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) )