提交 2d31757c 编写于 作者: R Ryan Mallon 提交者: Anton Vorontsov

ds2782_battery: Fix ds2782_get_capacity return value

The ds2782_get_capacity function should return 0 on success, not the
capacity value.
Signed-off-by: NRyan Mallon <ryan@bluewatersys.com>
Signed-off-by: NAnton Vorontsov <cbouatmailru@gmail.com>
上级 7e27d6e7
......@@ -163,7 +163,7 @@ static int ds2782_get_capacity(struct ds278x_info *info, int *capacity)
if (err)
return err;
*capacity = raw;
return raw;
return 0;
}
static int ds2786_get_current(struct ds278x_info *info, int *current_uA)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册