Changeset 75
- Timestamp:
- 12/13/98 17:52:15 (15 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 2 modified
-
kernel/chips/lm78.c (modified) (2 diffs)
-
src/lm78.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/kernel/chips/lm78.c
r74 r75 226 226 smbus_driver and isa_driver, and clients could be of either kind */ 227 227 static struct i2c_driver lm78_driver = { 228 /* name */ "LM78 sensor chipdriver",228 /* name */ "LM78(-J) and LM79 sensor driver", 229 229 /* id */ I2C_DRIVERID_LM78, 230 230 /* flags */ DF_NOTIFY, … … 464 464 type_name = "lm78-j"; 465 465 client_name = "LM78-J chip"; 466 } else if (err == 0x 80) {466 } else if (err == 0xc0) { 467 467 type = lm79; 468 468 type_name = "lm79"; -
lm-sensors/trunk/src/lm78.c
r74 r75 226 226 smbus_driver and isa_driver, and clients could be of either kind */ 227 227 static struct i2c_driver lm78_driver = { 228 /* name */ "LM78 sensor chipdriver",228 /* name */ "LM78(-J) and LM79 sensor driver", 229 229 /* id */ I2C_DRIVERID_LM78, 230 230 /* flags */ DF_NOTIFY, … … 464 464 type_name = "lm78-j"; 465 465 client_name = "LM78-J chip"; 466 } else if (err == 0x 80) {466 } else if (err == 0xc0) { 467 467 type = lm79; 468 468 type_name = "lm79";
