Mike Banon has uploaded this change for review. ( https://review.coreboot.org/23837
Change subject: dummyflasher: make it possible to choose MX25L6436 for emulation ......................................................................
dummyflasher: make it possible to choose MX25L6436 for emulation
flashchips.h does not have "#define MACRONIX_MX25L6436" - instead MX25L6436 chip currently belongs to "#define MACRONIX_MX25L6405". This commit makes it possible to emulate MX25L6436 by choosing MX25L6405
Change-Id: I687f4fd23fa2234d74b992749b0eab44efcebc1c Signed-off-by: Mike Banon mikebdp2@gmail.com --- M dummyflasher.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/37/23837/1
diff --git a/dummyflasher.c b/dummyflasher.c index 1c0c85b..e104617 100644 --- a/dummyflasher.c +++ b/dummyflasher.c @@ -322,7 +322,7 @@ msg_pdbg("Emulating SST SST25VF032B SPI flash chip (RDID, AAI " "write)\n"); } - if (!strcmp(tmp, "MX25L6436")) { + if (!strcmp(tmp, "MX25L6405")) { emu_chip = EMULATE_MACRONIX_MX25L6436; emu_chip_size = 8 * 1024 * 1024; emu_max_byteprogram_size = 256;