diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2008-07-03 19:26:44 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2008-07-03 19:26:44 +0000 |
commit | 6c8866cd845e2cab5af144a81898b521768e830a (patch) | |
tree | 064924e9d0d2ad3b90e31ff5ffd869bf941ae72f /layout.c | |
parent | 84dcc8b38ab3dc0d5b20b62ca043fd7c438e38a2 (diff) | |
download | flashrom-6c8866cd845e2cab5af144a81898b521768e830a.tar.gz flashrom-6c8866cd845e2cab5af144a81898b521768e830a.tar.bz2 flashrom-6c8866cd845e2cab5af144a81898b521768e830a.zip |
Minor cosmetics, e.g
Make stuff fit in 80 chars/line etc.
Corresponding to flashrom svn r296 and coreboot v2 svn r3412.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
Diffstat (limited to 'layout.c')
-rw-r--r-- | layout.c | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -50,9 +50,8 @@ int show_id(uint8_t *bios, int size, int force) walk--; if ((*walk) == 0 || ((*walk) & 0x3ff) != 0) { - /* We might have an Nvidia chipset bios - * which stores the id information at a - * different location. + /* We might have an NVIDIA chipset BIOS which stores the ID + * information at a different location. */ walk = (unsigned int *)(bios + size - 0x80); walk--; @@ -88,19 +87,17 @@ int show_id(uint8_t *bios, int size, int force) /* * If lb_vendor is not set, the coreboot table was - * not found. Nor was -mVENDOR:PART specified + * not found. Nor was -m VENDOR:PART specified. */ - if (!lb_vendor || !lb_part) { printf("Note: If the following flash access fails, " - "you might need to specify -m <vendor>:<mainboard>.\n"); + "try -m <vendor>:<mainboard>.\n"); return 0; } /* These comparisons are case insensitive to make things * a little less user^Werror prone. */ - if (!strcasecmp(mainboard_vendor, lb_vendor) && !strcasecmp(mainboard_part, lb_part)) { printf_debug("This firmware image matches " |