flashrom: Document the newly supported IBM x3455 board and the

now-supported Broadcom HT-1000 chipset (trivial).

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2713 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Uwe Hermann
2007-06-05 15:02:18 +00:00
parent 5e2a42ae32
commit 6602070955
3 changed files with 7 additions and 6 deletions

View File

@@ -387,12 +387,11 @@ static int enable_flash_mcp55(struct pci_dev *dev, char *name)
}
static int enable_flash_ht1000(struct pci_dev *dev, char *name)
{
unsigned char byte;
uint8_t byte;
/* Set the 4MB enable bit */
/* Set the 4MB enable bit. */
byte = pci_read_byte(dev, 0x41);
byte |= 0x0e;
pci_write_byte(dev, 0x41, byte);
@@ -462,7 +461,7 @@ static FLASH_ENABLE enables[] = {
{0x1002, 0x4377, "ATI SB400", enable_flash_sb400}, /* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */
{0x1166, 0x0205, "BCM HT1000", enable_flash_ht1000},
{0x1166, 0x0205, "Broadcom HT-1000", enable_flash_ht1000},
};
/*