aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2005-07-19 18:09:03 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2005-09-05 12:14:12 -0400
commit570aefc361d3315ec6749f573009286106b0b2d8 (patch)
treee399b3e54cc81c1f3c014b882e0c9a261f36d0f7 /include/linux
parent02ff982c6911de1484e13a1d765d7bd31a0f8fee (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')
-rw-r--r--include/linux/i2c-isa.h7
-rw-r--r--include/linux/i2c.h7
2 files changed, 7 insertions, 7 deletions
diff --git a/include/linux/i2c-isa.h b/include/linux/i2c-isa.h
index b5727d7702e1..db793b68356c 100644
--- a/include/linux/i2c-isa.h
+++ b/include/linux/i2c-isa.h
@@ -26,4 +26,11 @@
26extern int i2c_isa_add_driver(struct i2c_driver *driver); 26extern int i2c_isa_add_driver(struct i2c_driver *driver);
27extern int i2c_isa_del_driver(struct i2c_driver *driver); 27extern int i2c_isa_del_driver(struct i2c_driver *driver);
28 28
29/* Detect whether we are on the isa bus. This is only useful to hybrid
30 (i2c+isa) drivers. */
31#define i2c_is_isa_client(clientptr) \
32 ((clientptr)->adapter->algo->id == I2C_ALGO_ISA)
33#define i2c_is_isa_adapter(adapptr) \
34 ((adapptr)->algo->id == I2C_ALGO_ISA)
35
29#endif /* _LINUX_I2C_ISA_H */ 36#endif /* _LINUX_I2C_ISA_H */
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 */