i2c: avoid confusing naming in header
i2c_client pointers are usually named 'client'. Use it here to get rid of the ambiguity of 'dev->dev'. Signed-off-by: Wolfram Sang <wsa@kernel.org>
This commit is contained in:
@@ -351,14 +351,14 @@ static inline struct i2c_client *kobj_to_i2c_client(struct kobject *kobj)
|
||||
return to_i2c_client(dev);
|
||||
}
|
||||
|
||||
static inline void *i2c_get_clientdata(const struct i2c_client *dev)
|
||||
static inline void *i2c_get_clientdata(const struct i2c_client *client)
|
||||
{
|
||||
return dev_get_drvdata(&dev->dev);
|
||||
return dev_get_drvdata(&client->dev);
|
||||
}
|
||||
|
||||
static inline void i2c_set_clientdata(struct i2c_client *dev, void *data)
|
||||
static inline void i2c_set_clientdata(struct i2c_client *client, void *data)
|
||||
{
|
||||
dev_set_drvdata(&dev->dev, data);
|
||||
dev_set_drvdata(&client->dev, data);
|
||||
}
|
||||
|
||||
/* I2C slave support */
|
||||
|
Reference in New Issue
Block a user