diff --git a/CHANGES b/CHANGES index 11dbbdd..1eb8791 100644 --- a/CHANGES +++ b/CHANGES @@ -14,6 +14,7 @@ SVN Decode voltage interface level of DDR SDRAM decode-xeon: Delete eepromer: Fix array initialization overrun + i2cdetect: Drop legacy reference to ISA bus i2cset: Add support for short writes with PEC i2c-stub-from-dump: Use udev settle to speed up initialization Unload i2c-stub automatically if needed diff --git a/tools/i2cdetect.c b/tools/i2cdetect.c index 4750db5..38f5e94 100644 --- a/tools/i2cdetect.c +++ b/tools/i2cdetect.c @@ -317,13 +317,13 @@ int main(int argc, char *argv[]) if (mode != MODE_READ && !(funcs & I2C_FUNC_SMBUS_QUICK)) { fprintf(stderr, "Error: Can't use SMBus Quick Write command " - "on this bus (ISA bus?)\n"); + "on this bus\n"); close(file); exit(1); } if (mode != MODE_QUICK && !(funcs & I2C_FUNC_SMBUS_READ_BYTE)) { fprintf(stderr, "Error: Can't use SMBus Read Byte command " - "on this bus (ISA bus?)\n"); + "on this bus\n"); close(file); exit(1); }