aboutsummaryrefslogtreecommitdiff
path: root/util/flashrom/board_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
commit66020709559e481e1d9b062156fe01016db25c60 (patch)
tree1377e53a83b28713aad0856fdf88376891b53aae /util/flashrom/board_enable.c
parent5e2a42ae3288e1054fe367bee27f3894a7300f33 (diff)
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
Diffstat (limited to 'util/flashrom/board_enable.c')
-rw-r--r--util/flashrom/board_enable.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/flashrom/board_enable.c b/util/flashrom/board_enable.c
index 852da40dad..416d60ca07 100644
--- a/util/flashrom/board_enable.c
+++ b/util/flashrom/board_enable.c
@@ -250,10 +250,10 @@ static int board_ibm_x3455(const char *name)
{
uint8_t byte;
- /* Set GPIO lines in HT1000 southbridge */
+ /* Set GPIO lines in the Broadcom HT-1000 southbridge. */
outb(0x45, 0xcd6);
byte = inb(0xcd7);
- outb(byte|0x20, 0xcd7);
+ outb(byte | 0x20, 0xcd7);
return 0;
}