summaryrefslogtreecommitdiffstats
path: root/chipset_enable.c
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2007-06-05 15:02:18 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2007-06-05 15:02:18 +0000
commite823ee0fc5f772fac65435021b82517daf913d13 (patch)
tree90502d09c5f7d5edfd85106506d3f22215929acf /chipset_enable.c
parent1c283f424158fc8aa09d864df98aac037b9d61ef (diff)
downloadast2050-flashrom-e823ee0fc5f772fac65435021b82517daf913d13.zip
ast2050-flashrom-e823ee0fc5f772fac65435021b82517daf913d13.tar.gz
Document the newly supported IBM x3455 board and the now-supported Broadcom HT-1000 chipset
Corresponding to flashrom svn r119 and coreboot v2 svn r2713. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
Diffstat (limited to 'chipset_enable.c')
-rw-r--r--chipset_enable.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/chipset_enable.c b/chipset_enable.c
index 3e53244..b4deee3 100644
--- a/chipset_enable.c
+++ b/chipset_enable.c
@@ -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},
};
/*
OpenPOWER on IntegriCloud