Changeset 75

Show
Ignore:
Timestamp:
12/13/98 17:52:15 (15 years ago)
Author:
frodo
Message:

Another very, very small bug removed.

Location:
lm-sensors/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/kernel/chips/lm78.c

    r74 r75  
    226226   smbus_driver and isa_driver, and clients could be of either kind */ 
    227227static struct i2c_driver lm78_driver = { 
    228   /* name */            "LM78 sensor chip driver", 
     228  /* name */            "LM78(-J) and LM79 sensor driver", 
    229229  /* id */              I2C_DRIVERID_LM78, 
    230230  /* flags */           DF_NOTIFY, 
     
    464464      type_name = "lm78-j"; 
    465465      client_name = "LM78-J chip"; 
    466     } else if (err == 0x80) { 
     466    } else if (err == 0xc0) { 
    467467      type = lm79; 
    468468      type_name = "lm79"; 
  • lm-sensors/trunk/src/lm78.c

    r74 r75  
    226226   smbus_driver and isa_driver, and clients could be of either kind */ 
    227227static struct i2c_driver lm78_driver = { 
    228   /* name */            "LM78 sensor chip driver", 
     228  /* name */            "LM78(-J) and LM79 sensor driver", 
    229229  /* id */              I2C_DRIVERID_LM78, 
    230230  /* flags */           DF_NOTIFY, 
     
    464464      type_name = "lm78-j"; 
    465465      client_name = "LM78-J chip"; 
    466     } else if (err == 0x80) { 
     466    } else if (err == 0xc0) { 
    467467      type = lm79; 
    468468      type_name = "lm79";