From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47270) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YNRPW-0004fP-5a for qemu-devel@nongnu.org; Mon, 16 Feb 2015 14:32:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YNRPS-0004kJ-Ap for qemu-devel@nongnu.org; Mon, 16 Feb 2015 14:32:50 -0500 Received: from mail-la0-f42.google.com ([209.85.215.42]:36228) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YNRPS-0004kF-4A for qemu-devel@nongnu.org; Mon, 16 Feb 2015 14:32:46 -0500 Received: by labgq15 with SMTP id gq15so31865555lab.3 for ; Mon, 16 Feb 2015 11:32:45 -0800 (PST) From: Max Filippov Date: Mon, 16 Feb 2015 22:32:27 +0300 Message-Id: <1424115147-27077-1-git-send-email-jcmvbkbc@gmail.com> Subject: [Qemu-devel] [PATCH] target-xtensa: xtfpga: fix ml605 flash size List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Max Filippov ML605 daughterboard has 16MB flash, not 32MB. Change board definition accordingly. Signed-off-by: Max Filippov --- hw/xtensa/xtfpga.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xtensa/xtfpga.c b/hw/xtensa/xtfpga.c index e8793af..63a5291 100644 --- a/hw/xtensa/xtfpga.c +++ b/hw/xtensa/xtfpga.c @@ -551,7 +551,7 @@ static void xtensa_ml605_init(MachineState *machine) { static const LxBoardDesc ml605_board = { .flash_base = 0xf8000000, - .flash_size = 0x02000000, + .flash_size = 0x01000000, .flash_sector_size = 0x20000, .sram_size = 0x2000000, }; -- 1.8.1.4