diff options
author | Jean Delvare <khali@linux-fr.org> | 2005-11-26 15:00:54 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-01-06 01:16:22 -0500 |
commit | cde7859bda0d1124392b44e50aa11df99707e1d9 (patch) | |
tree | c852e7ff9b44b5e59f6ae75951514585f0ff10d9 /include/linux/i2c.h | |
parent | cb748fb20186d4b345c68a7f580429f379fdd268 (diff) |
[PATCH] i2c: Rework client usage count, 2 of 3
Make I2C_CLIENT_ALLOW_USE the default for all i2c clients. It doesn't
hurt if the usage count is actually never used for any given driver,
and allows for nice code simplifications in i2c-core.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux/i2c.h')
-rw-r--r-- | include/linux/i2c.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/i2c.h b/include/linux/i2c.h index 4487c5189747..8b4d4695de0e 100644 --- a/include/linux/i2c.h +++ b/include/linux/i2c.h | |||
@@ -250,7 +250,6 @@ static inline void i2c_set_adapdata (struct i2c_adapter *dev, void *data) | |||
250 | } | 250 | } |
251 | 251 | ||
252 | /*flags for the client struct: */ | 252 | /*flags for the client struct: */ |
253 | #define I2C_CLIENT_ALLOW_USE 0x01 /* Client allows access */ | ||
254 | #define I2C_CLIENT_PEC 0x04 /* Use Packet Error Checking */ | 253 | #define I2C_CLIENT_PEC 0x04 /* Use Packet Error Checking */ |
255 | #define I2C_CLIENT_TEN 0x10 /* we have a ten bit chip address */ | 254 | #define I2C_CLIENT_TEN 0x10 /* we have a ten bit chip address */ |
256 | /* Must equal I2C_M_TEN below */ | 255 | /* Must equal I2C_M_TEN below */ |