arm: fix indentation level in startup_cpu_idle_loop
authorIan Campbell <ian.campbell@citrix.com>
Fri, 17 Feb 2012 12:24:38 +0000 (12:24 +0000)
committerIan Campbell <ian.campbell@citrix.com>
Fri, 17 Feb 2012 12:24:38 +0000 (12:24 +0000)
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Acked-by: Tim Deegan <tim@xen.org>
Committed-by: Ian Campbell <Ian.Campbell@citrix.com>
xen/arch/arm/domain.c

index 5fe370b14dc558c34be81605093ef5bcb33912f2..0b559343ad43e644e87cfb3c1b3fb7869226efe0 100644 (file)
@@ -163,15 +163,15 @@ void sync_local_execstate(void)
 
 void startup_cpu_idle_loop(void)
 {
-        struct vcpu *v = current;
+    struct vcpu *v = current;
 
-        ASSERT(is_idle_vcpu(v));
-        /* TODO
-           cpumask_set_cpu(v->processor, v->domain->domain_dirty_cpumask);
-           cpumask_set_cpu(v->processor, v->vcpu_dirty_cpumask);
-        */
+    ASSERT(is_idle_vcpu(v));
+    /* TODO
+       cpumask_set_cpu(v->processor, v->domain->domain_dirty_cpumask);
+       cpumask_set_cpu(v->processor, v->vcpu_dirty_cpumask);
+    */
 
-        reset_stack_and_jump(idle_loop);
+    reset_stack_and_jump(idle_loop);
 }
 
 struct domain *alloc_domain_struct(void)