aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2012-02-17 12:24:38 +0000
committerIan Campbell <ian.campbell@citrix.com>2012-02-17 12:24:38 +0000
commit2c69a23d42c94e6692951004ce83c80a046ce965 (patch)
treeed2e0d0e85166e37229ec10db7f0b8de4575d1a0
parent47cf584883df7caf997b51eed15a84ae5a7ce324 (diff)
downloadxen-2c69a23d42c94e6692951004ce83c80a046ce965.tar.gz
xen-2c69a23d42c94e6692951004ce83c80a046ce965.tar.bz2
xen-2c69a23d42c94e6692951004ce83c80a046ce965.zip
arm: fix indentation level in startup_cpu_idle_loop
Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Acked-by: Tim Deegan <tim@xen.org> Committed-by: Ian Campbell <Ian.Campbell@citrix.com>
-rw-r--r--xen/arch/arm/domain.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/xen/arch/arm/domain.c b/xen/arch/arm/domain.c
index 5fe370b14d..0b559343ad 100644
--- a/xen/arch/arm/domain.c
+++ b/xen/arch/arm/domain.c
@@ -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)