diff options
author | David Brownell <david-b@pacbell.net> | 2007-05-01 17:26:30 -0400 |
---|---|---|
committer | Jean Delvare <khali@hyperion.delvare> | 2007-05-01 17:26:30 -0400 |
commit | a1d9e6e49f4b473a6945a6b553f5070e8c793e0a (patch) | |
tree | 8a33252327dc09d580c73e40ba73a92f46b3044f /include | |
parent | 7b4fbc50fabb810523be522fe7ec5cc40f85c7a1 (diff) |
i2c: i2c stack can remove()
More update for new style driver support: add a remove() method, and
use it in the relevant code paths.
Again, nothing will use this yet since there's nothing to create devices
feeding this infrastructure.
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/i2c.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/i2c.h b/include/linux/i2c.h index 8dcccc0f4822..6802c3a0a3a3 100644 --- a/include/linux/i2c.h +++ b/include/linux/i2c.h | |||
@@ -130,6 +130,7 @@ struct i2c_driver { | |||
130 | * it's done by infrastructure. (NEW STYLE DRIVERS ONLY) | 130 | * it's done by infrastructure. (NEW STYLE DRIVERS ONLY) |
131 | */ | 131 | */ |
132 | int (*probe)(struct i2c_client *); | 132 | int (*probe)(struct i2c_client *); |
133 | int (*remove)(struct i2c_client *); | ||
133 | 134 | ||
134 | /* driver model interfaces that don't relate to enumeration */ | 135 | /* driver model interfaces that don't relate to enumeration */ |
135 | void (*shutdown)(struct i2c_client *); | 136 | void (*shutdown)(struct i2c_client *); |