diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2007-10-17 23:55:15 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2007-10-17 23:55:15 +0000 |
commit | dcb9abdf4ce76910191c5b3abf56d03ad800e1f7 (patch) | |
tree | 16815aa22f39b0acec9667aab1dfd6df5f412b57 /util/flashrom/board_enable.c | |
parent | 7dabe5ea0d8af4b60c07a075fa03d4c837d2e698 (diff) | |
download | coreboot-dcb9abdf4ce76910191c5b3abf56d03ad800e1f7.tar.xz |
Some cosmetic cleanups in the flashrom code and output.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2873 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/flashrom/board_enable.c')
-rw-r--r-- | util/flashrom/board_enable.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/util/flashrom/board_enable.c b/util/flashrom/board_enable.c index 503f3917f5..78749634ae 100644 --- a/util/flashrom/board_enable.c +++ b/util/flashrom/board_enable.c @@ -161,7 +161,7 @@ static int board_via_epia_m(const char *name) dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */ if (!dev) { - fprintf(stderr, "\nERROR: VT8235 ISA Bridge not found.\n"); + fprintf(stderr, "\nERROR: VT8235 ISA bridge not found.\n"); return -1; } @@ -355,9 +355,9 @@ struct board_pciid_enable { struct board_pciid_enable board_pciid_enables[] = { {0x10de, 0x0360, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, - "gigabyte", "m57sli", "GIGABYTE GA-M57SLI", it87xx_probe_spi_flash}, + "gigabyte", "m57sli", "GIGABYTE GA-M57SLI-S4", it87xx_probe_spi_flash}, {0x10de, 0x03e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, - "gigabyte", "m61ps3", "GIGABYTE GA-M61P-S3", it87xx_probe_spi_flash}, + "gigabyte", "m61p", "GIGABYTE GA-M61P-S3", it87xx_probe_spi_flash}, {0x1022, 0x7468, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, "iwill", "dk8_htx", "IWILL DK8-HTX", w83627hf_gpio24_raise_2e}, {0x10de, 0x005e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, @@ -456,12 +456,12 @@ int board_flash_enable(char *vendor, char *part) board = board_match_pci_card_ids(); if (board) { - printf("Found board \"%s\": Enabling flash write... ", + printf("Found board \"%s\": enabling flash write... ", board->name); ret = board->enable(board->name); if (ret) - printf("Failed!\n"); + printf("FAILED!\n"); else printf("OK.\n"); } |