mfd: ucb1x00-core: Rewrite ucb1x00_add_dev()
Error handling is on-its-head in this function. After invoking a function we should examine the return code and return the error value if there was one. Instead, this function checks for success and goes onto provide functionality if success was received. Not so bad in a simple function like this, but in a more complex one this could end up drowning in curly brackets. Signed-off-by: Lee Jones <lee.jones@linaro.org>
这个提交包含在:
@@ -393,22 +393,24 @@ static struct irq_chip ucb1x00_irqchip = {
|
||||
static int ucb1x00_add_dev(struct ucb1x00 *ucb, struct ucb1x00_driver *drv)
|
||||
{
|
||||
struct ucb1x00_dev *dev;
|
||||
int ret = -ENOMEM;
|
||||
int ret;
|
||||
|
||||
dev = kmalloc(sizeof(struct ucb1x00_dev), GFP_KERNEL);
|
||||
if (dev) {
|
||||
dev->ucb = ucb;
|
||||
dev->drv = drv;
|
||||
if (!dev)
|
||||
return -ENOMEM;
|
||||
|
||||
ret = drv->add(dev);
|
||||
dev->ucb = ucb;
|
||||
dev->drv = drv;
|
||||
|
||||
if (ret == 0) {
|
||||
list_add_tail(&dev->dev_node, &ucb->devs);
|
||||
list_add_tail(&dev->drv_node, &drv->devs);
|
||||
} else {
|
||||
kfree(dev);
|
||||
}
|
||||
ret = drv->add(dev);
|
||||
if (ret) {
|
||||
kfree(dev);
|
||||
return ret;
|
||||
}
|
||||
|
||||
list_add_tail(&dev->dev_node, &ucb->devs);
|
||||
list_add_tail(&dev->drv_node, &drv->devs);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
在新工单中引用
屏蔽一个用户