Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 7158
b: refs/heads/master
c: 570aefc
h: refs/heads/master
v: v3
  • Loading branch information
Jean Delvare authored and Greg Kroah-Hartman committed Sep 5, 2005
1 parent 9ff90a3 commit 719456d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 02ff982c6911de1484e13a1d765d7bd31a0f8fee
refs/heads/master: 570aefc361d3315ec6749f573009286106b0b2d8
7 changes: 7 additions & 0 deletions trunk/include/linux/i2c-isa.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,11 @@
extern int i2c_isa_add_driver(struct i2c_driver *driver);
extern int i2c_isa_del_driver(struct i2c_driver *driver);

/* Detect whether we are on the isa bus. This is only useful to hybrid
(i2c+isa) drivers. */
#define i2c_is_isa_client(clientptr) \
((clientptr)->adapter->algo->id == I2C_ALGO_ISA)
#define i2c_is_isa_adapter(adapptr) \
((adapptr)->algo->id == I2C_ALGO_ISA)

#endif /* _LINUX_I2C_ISA_H */
7 changes: 0 additions & 7 deletions trunk/include/linux/i2c.h
Original file line number Diff line number Diff line change
Expand Up @@ -580,11 +580,4 @@ union i2c_smbus_data {
.force = force, \
}

/* Detect whether we are on the isa bus. If this returns true, all i2c
access will fail! */
#define i2c_is_isa_client(clientptr) \
((clientptr)->adapter->algo->id == I2C_ALGO_ISA)
#define i2c_is_isa_adapter(adapptr) \
((adapptr)->algo->id == I2C_ALGO_ISA)

#endif /* _LINUX_I2C_H */

0 comments on commit 719456d

Please sign in to comment.