From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:53181) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Smpp9-0002PT-S6 for qemu-devel@nongnu.org; Thu, 05 Jul 2012 13:26:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Smpp6-0003Pz-JL for qemu-devel@nongnu.org; Thu, 05 Jul 2012 13:26:39 -0400 Received: from mnementh.archaic.org.uk ([81.2.115.146]:60875) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Smpp6-0003PM-CV for qemu-devel@nongnu.org; Thu, 05 Jul 2012 13:26:36 -0400 From: Peter Maydell Date: Thu, 5 Jul 2012 18:00:47 +0100 Message-Id: <1341507652-22155-2-git-send-email-peter.maydell@linaro.org> In-Reply-To: <1341507652-22155-1-git-send-email-peter.maydell@linaro.org> References: <1341507652-22155-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PATCH 1/6] hw/arm_boot.c: Make ram_size a target_phys_addr_t List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Crosthwaite , patches@linaro.org Make the RAM size in arm_boot_info a target_phys_addr_t so it can express RAM sizes up to the limit imposed by the physical address size. Signed-off-by: Peter Maydell --- hw/arm-misc.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/arm-misc.h b/hw/arm-misc.h index 1f96229..c313027 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; + target_phys_addr_t ram_size; const char *kernel_filename; const char *kernel_cmdline; const char *initrd_filename; -- 1.7.1