Changeset 5074
- Timestamp:
- 12/15/07 23:35:17 (1 year ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (1 diff)
- lm-sensors/trunk/prog/dump/i2cdump.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r5068 r5074 15 15 Print the asset tag 16 16 Fix the timestamp decoding 17 Program i2cdump: Fix I2C block mode error code 17 18 Program pwmconfig: Better diagnostics in pwmdisable 18 19 Give the fans some time to spin up lm-sensors/trunk/prog/dump/i2cdump.c
r4950 r5074 314 314 i = i2c_smbus_read_i2c_block_data(file, 315 315 res, 32, cblock + res); 316 if (i <= 0) 316 if (i <= 0) { 317 res = i; 317 318 break; 319 } 318 320 } 319 321 }
