From: Max Filippov Date: Mon, 16 Feb 2015 19:30:21 +0000 (+0300) Subject: target-xtensa: xtfpga: fix ml605 flash size X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~321^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=12004c9eb4486a134b1f49b17890a364adca5f8c;p=sdk%2Femulator%2Fqemu.git target-xtensa: xtfpga: fix ml605 flash size ML605 daughterboard has 16MB flash, not 32MB. Change board definition accordingly. Cc: qemu-stable@nongnu.org Signed-off-by: Max Filippov --- diff --git a/hw/xtensa/xtfpga.c b/hw/xtensa/xtfpga.c index 2c2f997..d441c02 100644 --- a/hw/xtensa/xtfpga.c +++ b/hw/xtensa/xtfpga.c @@ -408,7 +408,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, };