Browse Source

Drop legacy reference to ISA bus. The i2c-isa fake bus driver is gone

long ago, today the message is only confusing.


git-svn-id: http://lm-sensors.org/svn/i2c-tools/trunk@5862 7894878c-1315-0410-8ee3-d5d059ff63e0
tags/v3.0.3
Jean Delvare 15 years ago
parent
commit
7e6f85bfc5
  1. 1
      CHANGES
  2. 4
      tools/i2cdetect.c

1
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

4
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);
}

Loading…
Cancel
Save