瀏覽代碼

mfd: da903x: Simplify function return logic

The invoked function already returns zero on success or a negative
errno code so there is no need to open code the logic in the caller.

Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Acked-by: Adam Thomson <Adam.Thomson.Opensource@diasemi.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Javier Martinez Canillas 10 年之前
父節點
當前提交
5597da2949
共有 1 個文件被更改,包括 1 次插入5 次删除
  1. 1 5
      drivers/mfd/da903x.c

+ 1 - 5
drivers/mfd/da903x.c

@@ -532,11 +532,7 @@ static int da903x_probe(struct i2c_client *client,
 		return ret;
 		return ret;
 	}
 	}
 
 
-	ret = da903x_add_subdevs(chip, pdata);
-	if (ret)
-		return ret;
-
-	return 0;
+	return da903x_add_subdevs(chip, pdata);
 }
 }
 
 
 static int da903x_remove(struct i2c_client *client)
 static int da903x_remove(struct i2c_client *client)