diff options
author | Jean Delvare <khali@linux-fr.org> | 2005-08-11 17:38:52 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2005-09-05 12:14:29 -0400 |
commit | 87c3d7a8bc0ff5c8d4481e509b407b6be1859925 (patch) | |
tree | 73fadb7bdd87a054cf3131b541af4216ba545755 /drivers/i2c/algos/i2c-algo-pcf.c | |
parent | e51cc6b3a365e170d3ebe51c2308fdd42e027a46 (diff) |
[PATCH] I2C: Kill i2c_algorithm.id (3/7)
Don't rely on i2c_algorithm.id to alter the i2c adapter's id, use the
I2C_ALGO_* value directly instead, because i2c_algorithm will soon
have no id member no more.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/i2c/algos/i2c-algo-pcf.c')
-rw-r--r-- | drivers/i2c/algos/i2c-algo-pcf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/algos/i2c-algo-pcf.c b/drivers/i2c/algos/i2c-algo-pcf.c index eb3e9e39d75b..fbc0b87fe070 100644 --- a/drivers/i2c/algos/i2c-algo-pcf.c +++ b/drivers/i2c/algos/i2c-algo-pcf.c | |||
@@ -476,7 +476,7 @@ int i2c_pcf_add_bus(struct i2c_adapter *adap) | |||
476 | 476 | ||
477 | /* register new adapter to i2c module... */ | 477 | /* register new adapter to i2c module... */ |
478 | 478 | ||
479 | adap->id |= pcf_algo.id; | 479 | adap->id |= I2C_ALGO_PCF; |
480 | adap->algo = &pcf_algo; | 480 | adap->algo = &pcf_algo; |
481 | 481 | ||
482 | adap->timeout = 100; /* default values, should */ | 482 | adap->timeout = 100; /* default values, should */ |