From patchwork Mon Nov 19 13:03:11 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: m25p80: Fix wrong jedec id for Numonyx n25q128 Date: Mon, 19 Nov 2012 03:03:11 -0000 From: walimis X-Patchwork-Id: 200005 Message-Id: <1353330191-13332-1-git-send-email-walimisdev@gmail.com> To: qemu-devel@nongnu.org, Peter Crosthwaite , Peter Maydell Cc: Stefan Hajnoczi The jedec id of "n25q128" should be 0x20bb18, not 0x20ba18. Signed-off-by: Liming Wang --- hw/m25p80.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/m25p80.c b/hw/m25p80.c index 3895e73..58ae754 100644 --- a/hw/m25p80.c +++ b/hw/m25p80.c @@ -177,7 +177,7 @@ static const FlashPartInfo known_devices[] = { { INFO("w25q64", 0xef4017, 0, 64 << 10, 128, ER_4K) }, /* Numonyx -- n25q128 */ - { INFO("n25q128", 0x20ba18, 0, 64 << 10, 256, 0) }, + { INFO("n25q128", 0x20bb18, 0, 64 << 10, 256, 0) }, { }, };