From d3bce83599358722791b6051ea45de70628adb57 Mon Sep 17 00:00:00 2001 From: Peter Stuge Date: Mon, 12 Jan 2009 21:28:03 +0000 Subject: IT8718F works just like IT8716F Corresponding to flashrom svn r379 and coreboot v2 svn r3858. Signed-off-by: Peter Stuge Acked-by: Yul Rottmann --- it87spi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'it87spi.c') diff --git a/it87spi.c b/it87spi.c index dd79b93..f95f88d 100644 --- a/it87spi.c +++ b/it87spi.c @@ -80,7 +80,7 @@ static uint16_t find_ite_spi_flash_port(uint16_t port) id |= regval(port, CHIP_ID_BYTE2_REG); /* TODO: Handle more IT87xx if they support flash translation */ - if (id == 0x8716) { + if (0x8716 == id || 0x8718 == id) { /* NOLDN, reg 0x24, mask out lowest bit (suspend) */ tmp = regval(port, 0x24) & 0xFE; printf("Serial flash segment 0x%08x-0x%08x %sabled\n", -- cgit v1.1