Changeset 5242 for i2c-tools/trunk/tools/i2cset.c
- Timestamp:
- 05/05/08 16:57:21 (4 years ago)
- Files:
-
- 1 modified
-
i2c-tools/trunk/tools/i2cset.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
i2c-tools/trunk/tools/i2cset.c
r5241 r5242 60 60 case I2C_SMBUS_BYTE: 61 61 if (!(funcs & I2C_FUNC_SMBUS_WRITE_BYTE)) { 62 fprintf(stderr, MISSING_FUNC_FMT, " byte send");62 fprintf(stderr, MISSING_FUNC_FMT, "SMBus send byte"); 63 63 return -1; 64 64 } … … 67 67 case I2C_SMBUS_BYTE_DATA: 68 68 if (!(funcs & I2C_FUNC_SMBUS_WRITE_BYTE_DATA)) { 69 fprintf(stderr, MISSING_FUNC_FMT, " byte write");69 fprintf(stderr, MISSING_FUNC_FMT, "SMBus write byte"); 70 70 return -1; 71 71 } … … 74 74 case I2C_SMBUS_WORD_DATA: 75 75 if (!(funcs & I2C_FUNC_SMBUS_WRITE_WORD_DATA)) { 76 fprintf(stderr, MISSING_FUNC_FMT, " word write");76 fprintf(stderr, MISSING_FUNC_FMT, "SMBus write word"); 77 77 return -1; 78 78 }
