diff options
author | Mark M. Hoffman <mhoffman@lightlink.com> | 2007-07-12 14:12:28 +0200 |
---|---|---|
committer | Jean Delvare <khali@hyperion.delvare> | 2007-07-12 14:12:28 +0200 |
commit | d75d53cd571c02990d56e72f615ab11e943772f9 (patch) | |
tree | 7a4e8cbece9b18829e5cb830134d717cfce38e18 /include | |
parent | d64f73be1b59b9556de0a8fbd4f1a003c6a45a5c (diff) |
i2c: Fix sparse warning in i2c.h
Kill a sparse warning by un-nesting two container_of() calls.
Signed-off-by: Mark M. Hoffman <mhoffman@lightlink.com>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/i2c.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/i2c.h b/include/linux/i2c.h index a24e267fd18..44f2ecf47d9 100644 --- a/include/linux/i2c.h +++ b/include/linux/i2c.h @@ -185,7 +185,8 @@ struct i2c_client { static inline struct i2c_client *kobj_to_i2c_client(struct kobject *kobj) { - return to_i2c_client(container_of(kobj, struct device, kobj)); + struct device * const dev = container_of(kobj, struct device, kobj); + return to_i2c_client(dev); } static inline void *i2c_get_clientdata (struct i2c_client *dev) |