Changeset 79
- Timestamp:
- 12/15/98 05:55:51 (15 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 4 added
- 3 modified
-
doc/eeprom (added)
-
doc/piix4 (modified) (1 diff)
-
kernel/chips/eeprom.c (modified) (1 diff)
-
prog (added)
-
prog/eeprom (added)
-
prog/eeprom/decode-dimms.pl (added)
-
src/eeprom.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/doc/piix4
r50 r79 1 1 The PIIX4 (properly known as the 82371AB) is an Intel chip with a lot of 2 2 functionality. Among other things, it implements the PCI bus. One of its 3 minor functions is implementing a System Management MBus. This is a true3 minor functions is implementing a System Management Bus. This is a true 4 4 SMBus - you can not access it on I2C levels. The good news is that it 5 5 natively understands SMBus commands and you do not have to worry about -
lm-sensors/trunk/kernel/chips/eeprom.c
r76 r79 287 287 } 288 288 for (i=0;i<EEPROM_SIZE;i++) { 289 data->data[i] = (u8)smbus_read_byte(client->adapter,client->addr);289 data->data[i] = (u8)smbus_read_byte(client->adapter,client->addr); 290 290 } 291 291 -
lm-sensors/trunk/src/eeprom.c
r76 r79 287 287 } 288 288 for (i=0;i<EEPROM_SIZE;i++) { 289 data->data[i] = (u8)smbus_read_byte(client->adapter,client->addr);289 data->data[i] = (u8)smbus_read_byte(client->adapter,client->addr); 290 290 } 291 291
