From 7e6f85bfc5216a903baa7bfecc0fd7a9d8ebcf29 Mon Sep 17 00:00:00 2001 From: Jean Delvare Date: Wed, 22 Sep 2010 15:40:28 +0000 Subject: [PATCH] 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 --- CHANGES | 1 + tools/i2cdetect.c | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) 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); }