From: Peter Maydell Date: Fri, 20 Jul 2012 12:34:49 +0000 (+0100) Subject: hw/arm_boot.c: Make ram_size a uint64_t X-Git-Tag: v1.2.0-rc0~144^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=de841dea59168e4abb8a2d09aaa30cc217fefda3;p=thirdparty%2Fqemu.git hw/arm_boot.c: Make ram_size a uint64_t Make the RAM size in arm_boot_info a uint64_t so it can express the larger RAM sizes that may be seen in LPAE systems. Signed-off-by: Peter Maydell Reviewed-by: Peter A. G. Crosthwaite --- diff --git a/hw/arm-misc.h b/hw/arm-misc.h index 1f96229d3c9..bdd8fecc99e 100644 --- a/hw/arm-misc.h +++ b/hw/arm-misc.h @@ -25,7 +25,7 @@ qemu_irq *armv7m_init(MemoryRegion *address_space_mem, /* arm_boot.c */ struct arm_boot_info { - int ram_size; + uint64_t ram_size; const char *kernel_filename; const char *kernel_cmdline; const char *initrd_filename;