diff options
author | Jean Delvare <khali@linux-fr.org> | 2005-07-19 18:09:03 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2005-09-05 12:14:12 -0400 |
commit | 570aefc361d3315ec6749f573009286106b0b2d8 (patch) | |
tree | e399b3e54cc81c1f3c014b882e0c9a261f36d0f7 /include/linux/i2c.h | |
parent | 02ff982c6911de1484e13a1d765d7bd31a0f8fee (diff) |
[PATCH] I2C: Separate non-i2c hwmon drivers from i2c-core (9/9)
Move the definitions of i2c_is_isa_client and i2c_is_isa_adapter from
i2c.h to i2c-isa.h. Only hybrid drivers still need them.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux/i2c.h')
-rw-r--r-- | include/linux/i2c.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/linux/i2c.h b/include/linux/i2c.h index 39ff363eadec..da4faa016b17 100644 --- a/include/linux/i2c.h +++ b/include/linux/i2c.h | |||
@@ -580,11 +580,4 @@ union i2c_smbus_data { | |||
580 | .force = force, \ | 580 | .force = force, \ |
581 | } | 581 | } |
582 | 582 | ||
583 | /* Detect whether we are on the isa bus. If this returns true, all i2c | ||
584 | access will fail! */ | ||
585 | #define i2c_is_isa_client(clientptr) \ | ||
586 | ((clientptr)->adapter->algo->id == I2C_ALGO_ISA) | ||
587 | #define i2c_is_isa_adapter(adapptr) \ | ||
588 | ((adapptr)->algo->id == I2C_ALGO_ISA) | ||
589 | |||
590 | #endif /* _LINUX_I2C_H */ | 583 | #endif /* _LINUX_I2C_H */ |