Show
Ignore:
Timestamp:
07/03/08 21:26:44 (5 months ago)
Author:
uwe
Message:

Minor cosmetics, e.g. make stuff fit in 80 chars/line etc. (trivial).

Signed-off-by: Uwe Hermann <uwe@…>
Acked-by: Uwe Hermann <uwe@…>

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/util/flashrom/layout.c

    r3408 r3412  
    5151 
    5252        if ((*walk) == 0 || ((*walk) & 0x3ff) != 0) { 
    53                 /* We might have an Nvidia chipset bios  
    54                  * which stores the id information at a  
    55                  * different location. 
     53                /* We might have an NVIDIA chipset BIOS which stores the ID 
     54                 * information at a different location. 
    5655                 */ 
    5756                walk = (unsigned int *)(bios + size - 0x80); 
     
    8988        /* 
    9089         * If lb_vendor is not set, the coreboot table was 
    91          * not found. Nor was -mVENDOR:PART specified 
     90         * not found. Nor was -m VENDOR:PART specified. 
    9291         */ 
    93  
    9492        if (!lb_vendor || !lb_part) { 
    9593                printf("Note: If the following flash access fails, " 
    96                        "you might need to specify -m <vendor>:<mainboard>.\n"); 
     94                       "try -m <vendor>:<mainboard>.\n"); 
    9795                return 0; 
    9896        } 
     
    10199         * a little less user^Werror prone.  
    102100         */ 
    103  
    104101        if (!strcasecmp(mainboard_vendor, lb_vendor) && 
    105102            !strcasecmp(mainboard_part, lb_part)) {