diff options
author | Jean Delvare <khali@linux-fr.org> | 2005-08-12 01:40:19 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2005-09-05 20:14:29 +0400 |
commit | 1d8b9e1bad35fa3ea829990b9056c2a257d8fe79 (patch) | |
tree | f3bba0f4b011d3a608dae6be4f296484328b638f /drivers/i2c/busses/i2c-mpc.c | |
parent | 87c3d7a8bc0ff5c8d4481e509b407b6be1859925 (diff) | |
download | linux-1d8b9e1bad35fa3ea829990b9056c2a257d8fe79.tar.xz |
[PATCH] I2C: Kill i2c_algorithm.id (4/7)
There are no more users of i2c_algorithm.id, so we can finally drop
this structure member.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/i2c/busses/i2c-mpc.c')
-rw-r--r-- | drivers/i2c/busses/i2c-mpc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-mpc.c b/drivers/i2c/busses/i2c-mpc.c index ae988cc8cb48..70c5ffaee6a3 100644 --- a/drivers/i2c/busses/i2c-mpc.c +++ b/drivers/i2c/busses/i2c-mpc.c @@ -272,7 +272,6 @@ static u32 mpc_functionality(struct i2c_adapter *adap) } static struct i2c_algorithm mpc_algo = { - .id = I2C_ALGO_MPC107, .master_xfer = mpc_xfer, .functionality = mpc_functionality, }; |