Commit b2f7a2f3 authored by Uwe Hermann's avatar Uwe Hermann
Browse files

The Silicon Image PCI0680 has bit 26 marked as reserved, so don't use it


Corresponding to flashrom svn r537.
Signed-off-by: default avatarUwe Hermann <uwe@hermann-uwe.de>
Acked-by: default avatarUwe Hermann <uwe@hermann-uwe.de>
parent cdde6da8
......@@ -64,8 +64,8 @@ int satasii_init(void)
sii_bar = physmap("SATA SIL registers", addr, 0x100) + reg_offset;
/* Check if ROM cycle are OK. */
if (!(mmio_readl(sii_bar)) & (1 << 26))
printf("Warning: Flash seems unconnected\n");
if ((id != 0x0680) && (!(mmio_readl(sii_bar)) & (1 << 26)))
printf("Warning: Flash seems unconnected.\n");
return 0;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment