aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/i2c.h
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2009-09-18 22:45:43 +0200
committerJean Delvare <khali@linux-fr.org>2009-09-18 22:45:43 +0200
commit6a891a3111fe701517bb31c2204304724c7299c8 (patch)
tree34ead1e38f2b6d00f0cced5d1b43aca23eb56a47 /include/linux/i2c.h
parentpty_write: don't do a tty_wakeup() when the buffers are full (diff)
downloadlinux-dev-6a891a3111fe701517bb31c2204304724c7299c8.tar.xz
linux-dev-6a891a3111fe701517bb31c2204304724c7299c8.zip
i2c: Drop unused i2c_driver.id field
Nobody is using i2c_driver.id any longer, so we can drop that field. Signed-off-by: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to 'include/linux/i2c.h')
-rw-r--r--include/linux/i2c.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/i2c.h b/include/linux/i2c.h
index f4784c0fe975..57d41b0abce2 100644
--- a/include/linux/i2c.h
+++ b/include/linux/i2c.h
@@ -98,7 +98,6 @@ extern s32 i2c_smbus_write_i2c_block_data(struct i2c_client *client,
/**
* struct i2c_driver - represent an I2C device driver
- * @id: Unique driver ID (optional)
* @class: What kind of i2c device we instantiate (for detect)
* @attach_adapter: Callback for bus addition (for legacy drivers)
* @detach_adapter: Callback for bus removal (for legacy drivers)
@@ -135,7 +134,6 @@ extern s32 i2c_smbus_write_i2c_block_data(struct i2c_client *client,
* not allowed.
*/
struct i2c_driver {
- int id;
unsigned int class;
/* Notifies the driver that a new bus has appeared or is about to be