diff options
author | Jean Delvare <khali@linux-fr.org> | 2005-07-19 18:05:33 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2005-09-05 12:14:12 -0400 |
commit | 02ff982c6911de1484e13a1d765d7bd31a0f8fee (patch) | |
tree | 94e8c388df0de6561da7f10840f4e87dead18724 /drivers/hwmon/asb100.c | |
parent | 5071860aba7fc69279ab822638ed2c2e4549f9fd (diff) |
[PATCH] I2C: Separate non-i2c hwmon drivers from i2c-core (8/9)
Kill all uses of i2c_is_isa_adapter except for the hybrid drivers (it87,
lm78, w83781d). The i2c-isa adapter not being registered with the i2c
core anymore, drivers don't have to fear being erroneously attached to
it.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/hwmon/asb100.c')
-rw-r--r-- | drivers/hwmon/asb100.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/hwmon/asb100.c b/drivers/hwmon/asb100.c index d1856acf87a0..290f7d2ac0a8 100644 --- a/drivers/hwmon/asb100.c +++ b/drivers/hwmon/asb100.c | |||
@@ -714,14 +714,6 @@ static int asb100_detect(struct i2c_adapter *adapter, int address, int kind) | |||
714 | struct i2c_client *new_client; | 714 | struct i2c_client *new_client; |
715 | struct asb100_data *data; | 715 | struct asb100_data *data; |
716 | 716 | ||
717 | /* asb100 is SMBus only */ | ||
718 | if (i2c_is_isa_adapter(adapter)) { | ||
719 | pr_debug("asb100.o: detect failed, " | ||
720 | "cannot attach to legacy adapter!\n"); | ||
721 | err = -ENODEV; | ||
722 | goto ERROR0; | ||
723 | } | ||
724 | |||
725 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) { | 717 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) { |
726 | pr_debug("asb100.o: detect failed, " | 718 | pr_debug("asb100.o: detect failed, " |
727 | "smbus byte data not supported!\n"); | 719 | "smbus byte data not supported!\n"); |