Changeset 4240

Show
Ignore:
Timestamp:
11/14/06 14:06:35 (7 years ago)
Author:
khali
Message:

Less confusing algorithm names. We'll drop this field soon anyway.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/prog/dump/i2cbusses.c

    r4230 r4240  
    4242static struct adap_type adap_types[5] = { 
    4343        { .funcs        = "dummy", 
    44           .algo         = "Dummy bus algorithm", }, 
     44          .algo         = "Dummy bus", }, 
    4545        { .funcs        = "isa", 
    46           .algo         = "ISA bus algorithm", }, 
     46          .algo         = "ISA bus", }, 
    4747        { .funcs        = "i2c", 
    48           .algo         = "Algorithm unavailable", }, 
     48          .algo         = "I2C adapter", }, 
    4949        { .funcs        = "smbus", 
    50           .algo         = "Non-I2C SMBus adapter", }, 
     50          .algo         = "SMBus adapter", }, 
    5151        { .funcs        = "unknown", 
    52           .algo         = "Algorithm unavailable", }, 
     52          .algo         = "N/A", }, 
    5353}; 
    5454