Changeset 5073
- Timestamp:
- 12/15/07 23:33:37 (4 years ago)
- Location:
- i2c-tools/trunk
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
tools/i2cdump.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
i2c-tools/trunk/CHANGES
r5029 r5073 8 8 Print the asset tag 9 9 Fix the timestamp decoding 10 i2cdump: Fix I2C block mode error code 10 11 i2cset: Final status messages go to stdout 11 12 Return success even when readback fails or doesn't match -
i2c-tools/trunk/tools/i2cdump.c
r4948 r5073 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 }
