aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/arm/setup.c
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2013-02-15 13:32:08 +0000
committerIan Campbell <ian.campbell@citrix.com>2013-02-15 13:32:08 +0000
commit3501bec5ec0fad72a78b5fad8d2d11f2e64842a3 (patch)
treeb1c6b1f86e439f91159da949c3f73b4f77ad875c /xen/arch/arm/setup.c
parent107b7c0badd422ffba9342cb237eda73ec6373d4 (diff)
downloadxen-3501bec5ec0fad72a78b5fad8d2d11f2e64842a3.tar.gz
xen-3501bec5ec0fad72a78b5fad8d2d11f2e64842a3.tar.bz2
xen-3501bec5ec0fad72a78b5fad8d2d11f2e64842a3.zip
xen: arm: rename atag_paddr argument fdt_paddr
We don't support ATAGs and this is always actually an FDT address. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Acked-by: Tim Deegan <tim@xen.org> Committed-by: Ian Campbell <ian.campbell@citrix.com>
Diffstat (limited to 'xen/arch/arm/setup.c')
-rw-r--r--xen/arch/arm/setup.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/xen/arch/arm/setup.c b/xen/arch/arm/setup.c
index 7e3586057a..0837db365e 100644
--- a/xen/arch/arm/setup.c
+++ b/xen/arch/arm/setup.c
@@ -329,7 +329,7 @@ void __init setup_cache(void)
/* C entry point for boot CPU */
void __init start_xen(unsigned long boot_phys_offset,
- unsigned long atag_paddr,
+ unsigned long fdt_paddr,
unsigned long cpuid)
{
void *fdt;
@@ -341,7 +341,7 @@ void __init start_xen(unsigned long boot_phys_offset,
smp_clear_cpu_maps();
fdt = (void *)BOOT_MISC_VIRT_START
- + (atag_paddr & ((1 << SECOND_SHIFT) - 1));
+ + (fdt_paddr & ((1 << SECOND_SHIFT) - 1));
fdt_size = device_tree_early_init(fdt);
cpus = smp_get_max_cpus();
@@ -365,7 +365,7 @@ void __init start_xen(unsigned long boot_phys_offset,
set_current((struct vcpu *)0xfffff000); /* debug sanity */
idle_vcpu[0] = current;
- setup_mm(atag_paddr, fdt_size);
+ setup_mm(fdt_paddr, fdt_size);
/* Setup Hyp vector base */
WRITE_CP32((uint32_t) hyp_traps_vector, HVBAR);