Changeset 4948 for i2c-tools/trunk/tools
- Timestamp:
- 10/14/07 13:21:00 (5 years ago)
- Location:
- i2c-tools/trunk/tools
- Files:
-
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
i2c-tools/trunk/tools/i2cdetect.c
r4499 r4948 147 147 { .value = I2C_FUNC_SMBUS_BLOCK_PROC_CALL, 148 148 .name = "SMBus Block Process Call" }, 149 { .value = I2C_FUNC_SMBUS_ HWPEC_CALC,149 { .value = I2C_FUNC_SMBUS_PEC, 150 150 .name = "SMBus PEC" }, 151 151 { .value = I2C_FUNC_SMBUS_WRITE_I2C_BLOCK, -
i2c-tools/trunk/tools/i2cdump.c
r4499 r4948 245 245 exit(1); 246 246 } 247 if (!(funcs & (I2C_FUNC_SMBUS_ HWPEC_CALC | I2C_FUNC_I2C))) {247 if (!(funcs & (I2C_FUNC_SMBUS_PEC | I2C_FUNC_I2C))) { 248 248 fprintf(stderr, "Warning: Adapter for i2c bus %d does " 249 249 "not seem to actually support PEC\n", i2cbus); -
i2c-tools/trunk/tools/i2cget.c
r4499 r4948 95 95 96 96 if (pec 97 && !(funcs & (I2C_FUNC_SMBUS_ HWPEC_CALC | I2C_FUNC_I2C))) {97 && !(funcs & (I2C_FUNC_SMBUS_PEC | I2C_FUNC_I2C))) { 98 98 fprintf(stderr, "Warning: Adapter for i2c bus %d does " 99 99 "not seem to support PEC\n", i2cbus); -
i2c-tools/trunk/tools/i2cset.c
r4499 r4948 235 235 exit(1); 236 236 } 237 if (!(funcs & (I2C_FUNC_SMBUS_ HWPEC_CALC | I2C_FUNC_I2C))) {237 if (!(funcs & (I2C_FUNC_SMBUS_PEC | I2C_FUNC_I2C))) { 238 238 fprintf(stderr, "Warning: Adapter for i2c bus %d does " 239 239 "not seem to actually support PEC\n", i2cbus);
