summaryrefslogtreecommitdiff
path: root/hw/arm-misc.h
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2012-07-20 13:34:49 +0100
committerPeter Maydell <peter.maydell@linaro.org>2012-07-20 13:34:49 +0100
commitde841dea59168e4abb8a2d09aaa30cc217fefda3 (patch)
tree104b155e7bc578547f806efbe6e00a6277fb5d2c /hw/arm-misc.h
parent0d4abda8f7328c8911c1d020bb6961650eaf7801 (diff)
downloadqemu-de841dea59168e4abb8a2d09aaa30cc217fefda3.tar.gz
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 <peter.maydell@linaro.org> Reviewed-by: Peter A. G. Crosthwaite <peter.crosthwaite@petalogix.com>
Diffstat (limited to 'hw/arm-misc.h')
-rw-r--r--hw/arm-misc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/arm-misc.h b/hw/arm-misc.h
index 1f96229d3c..bdd8fecc99 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;