]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[PATCH] I2C: Kill i2c_algorithm.id (3/7)
authorJean Delvare <khali@linux-fr.org>
Thu, 11 Aug 2005 21:38:52 +0000 (23:38 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 5 Sep 2005 16:14:29 +0000 (09:14 -0700)
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>
drivers/i2c/algos/i2c-algo-bit.c
drivers/i2c/algos/i2c-algo-ite.c
drivers/i2c/algos/i2c-algo-pca.c
drivers/i2c/algos/i2c-algo-pcf.c
drivers/i2c/algos/i2c-algo-sgi.c
drivers/i2c/algos/i2c-algo-sibyte.c
drivers/i2c/busses/i2c-ibm_iic.c

index 6e1e1601accb2ed6767fbe63d3a213425b77e77e..b8767382bbacbfe22128629a3e1a158c8d12d3cf 100644 (file)
@@ -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       */
index a9c2b1115e07836ee39e35899daf0be39f6a377d..6cb02f685db3fdeed4335f188807d51f23a4a4d3 100644 (file)
@@ -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       */
index 16157391cdf5e1a0a2e01cf0fb2679825962a7e1..79b3c2edcf08e3c2bbd35f7db381342efa306ed1 100644 (file)
@@ -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       */
index eb3e9e39d75bc78da31379611d201a7e7356f49c..fbc0b87fe070d5bea4db1980c5748bed58903cc3 100644 (file)
@@ -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       */
index 55284c9e41dc60686983c37b71d79dd482f1e18e..8863a671d9771366490821b9c299dbdf93b87d48 100644 (file)
@@ -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);
index 4ca3e69461bc235071c7af3183b03c66b15460dd..6cda0a6332d997497d8c274910989c089079a77c 100644 (file)
@@ -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 */
index 1a3366287087d8f7a758e24ee8147b3f69106a0f..ade9b14e6840b85cbb1763eae0edc198fddd2562 100644 (file)
@@ -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;