Changeset 933 for trunk/internal.c


Ignore:
Timestamp:
03/13/10 18:28:29 (2 years ago)
Author:
uwe
Message:

Various coding style and cosmetic changes (trivial).

  • Fix coding-style, whitespace, and indentation in a few places.
  • Consistently use the same spelling ("Super I/O") everywhere.
  • Make some flashrom stdout output look a bit nicer.


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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/internal.c

    r919 r933  
    106106{ 
    107107        superio = probe_superio_ite(); 
    108 #if 0   /* Winbond SuperI/O code is not yet available. */ 
     108#if 0 
     109        /* Winbond Super I/O code is not yet available. */ 
    109110        if (superio.vendor == SUPERIO_VENDOR_NONE) 
    110111                superio = probe_superio_winbond(); 
     
    151152        dmi_init(); 
    152153 
    153         /* Probe for the SuperI/O chip and fill global struct superio. */ 
     154        /* Probe for the Super I/O chip and fill global struct superio. */ 
    154155        probe_superio(); 
    155156 
    156         /* Warn if a laptop is detected */ 
     157        /* Warn if a laptop is detected. */ 
    157158        if (is_laptop) 
    158159                printf("========================================================================\n" 
     
    160161                       "Laptops, notebooks and netbooks are difficult to support and we recommend\n" 
    161162                       "to use the vendor flashing utility. The embedded controller (EC) in these\n" 
    162                        "machines often interacts badly with flashing\n" 
    163                        "See http://www.flashrom.org/Laptops\n" 
     163                       "machines often interacts badly with flashing.\n" 
     164                       "See http://www.flashrom.org/Laptops for details.\n" 
    164165                       "========================================================================\n"); 
    165166 
Note: See TracChangeset for help on using the changeset viewer.