Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 7186
b: refs/heads/master
c: 87c3d7a
h: refs/heads/master
v: v3
  • Loading branch information
Jean Delvare authored and Greg Kroah-Hartman committed Sep 5, 2005
1 parent 5f2dfb1 commit 6e871a7
Show file tree
Hide file tree
Showing 8 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: e51cc6b3a365e170d3ebe51c2308fdd42e027a46
refs/heads/master: 87c3d7a8bc0ff5c8d4481e509b407b6be1859925
2 changes: 1 addition & 1 deletion trunk/drivers/i2c/algos/i2c-algo-bit.c
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ int i2c_bit_add_bus(struct i2c_adapter *adap)

/* register new adapter to i2c module... */

adap->id |= i2c_bit_algo.id;
adap->id |= I2C_ALGO_BIT;
adap->algo = &i2c_bit_algo;

adap->timeout = 100; /* default values, should */
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/i2c/algos/i2c-algo-ite.c
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ int i2c_iic_add_bus(struct i2c_adapter *adap)

/* register new adapter to i2c module... */

adap->id |= iic_algo.id;
adap->id |= I2C_ALGO_IIC;
adap->algo = &iic_algo;

adap->timeout = 100; /* default values, should */
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/i2c/algos/i2c-algo-pca.c
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ int i2c_pca_add_bus(struct i2c_adapter *adap)

/* register new adapter to i2c module... */

adap->id |= pca_algo.id;
adap->id |= I2C_ALGO_PCA;
adap->algo = &pca_algo;

adap->timeout = 100; /* default values, should */
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/i2c/algos/i2c-algo-pcf.c
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ int i2c_pcf_add_bus(struct i2c_adapter *adap)

/* register new adapter to i2c module... */

adap->id |= pcf_algo.id;
adap->id |= I2C_ALGO_PCF;
adap->algo = &pcf_algo;

adap->timeout = 100; /* default values, should */
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/i2c/algos/i2c-algo-sgi.c
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ static struct i2c_algorithm sgi_algo = {
*/
int i2c_sgi_add_bus(struct i2c_adapter *adap)
{
adap->id |= sgi_algo.id;
adap->id |= I2C_ALGO_SGI;
adap->algo = &sgi_algo;

return i2c_add_adapter(adap);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/i2c/algos/i2c-algo-sibyte.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ int i2c_sibyte_add_bus(struct i2c_adapter *i2c_adap, int speed)

/* register new adapter to i2c module... */

i2c_adap->id |= i2c_sibyte_algo.id;
i2c_adap->id |= I2C_ALGO_SIBYTE;
i2c_adap->algo = &i2c_sibyte_algo;

/* Set the frequency to 100 kHz */
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/i2c/busses/i2c-ibm_iic.c
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,7 @@ static int __devinit iic_probe(struct ocp_device *ocp){
adap = &dev->adap;
strcpy(adap->name, "IBM IIC");
i2c_set_adapdata(adap, dev);
adap->id = I2C_HW_OCP | iic_algo.id;
adap->id = I2C_ALGO_OCP | I2C_HW_OCP;
adap->algo = &iic_algo;
adap->client_register = NULL;
adap->client_unregister = NULL;
Expand Down

0 comments on commit 6e871a7

Please sign in to comment.