mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-01 12:04:08 +00:00
i2c: dev: don't start function name with 'return'
I stumbled multiple times over 'return_i2c_dev', especially before the actual 'return res'. It makes the code hard to read, so reanme the function to 'put_i2c_dev' which also better matches 'get_free_i2c_dev'. Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
This commit is contained in:
parent
d6760b14d4
commit
72a71f869c
1 changed files with 3 additions and 3 deletions
|
@ -91,7 +91,7 @@ static struct i2c_dev *get_free_i2c_dev(struct i2c_adapter *adap)
|
||||||
return i2c_dev;
|
return i2c_dev;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void return_i2c_dev(struct i2c_dev *i2c_dev)
|
static void put_i2c_dev(struct i2c_dev *i2c_dev)
|
||||||
{
|
{
|
||||||
spin_lock(&i2c_dev_list_lock);
|
spin_lock(&i2c_dev_list_lock);
|
||||||
list_del(&i2c_dev->list);
|
list_del(&i2c_dev->list);
|
||||||
|
@ -575,7 +575,7 @@ static int i2cdev_attach_adapter(struct device *dev, void *dummy)
|
||||||
error:
|
error:
|
||||||
cdev_del(&i2c_dev->cdev);
|
cdev_del(&i2c_dev->cdev);
|
||||||
error_cdev:
|
error_cdev:
|
||||||
return_i2c_dev(i2c_dev);
|
put_i2c_dev(i2c_dev);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -592,7 +592,7 @@ static int i2cdev_detach_adapter(struct device *dev, void *dummy)
|
||||||
if (!i2c_dev) /* attach_adapter must have failed */
|
if (!i2c_dev) /* attach_adapter must have failed */
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
return_i2c_dev(i2c_dev);
|
put_i2c_dev(i2c_dev);
|
||||||
device_destroy(i2c_dev_class, MKDEV(I2C_MAJOR, adap->nr));
|
device_destroy(i2c_dev_class, MKDEV(I2C_MAJOR, adap->nr));
|
||||||
cdev_del(&i2c_dev->cdev);
|
cdev_del(&i2c_dev->cdev);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue