diff options
author | Ryan Mallon <ryan@bluewatersys.com> | 2010-06-15 12:44:59 +1200 |
---|---|---|
committer | Anton Vorontsov <cbouatmailru@gmail.com> | 2010-06-21 19:13:36 +0400 |
commit | 2d31757c87a741823f77daaa07eeb8d56be63943 (patch) | |
tree | 4e3d5131a56b2d95a009fd41532e79da1c8b77ef /drivers/power | |
parent | 7e27d6e778cd87b6f2415515d7127eba53fe5d02 (diff) |
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: Ryan Mallon <ryan@bluewatersys.com>
Signed-off-by: Anton Vorontsov <cbouatmailru@gmail.com>
Diffstat (limited to 'drivers/power')
-rw-r--r-- | drivers/power/ds2782_battery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/ds2782_battery.c b/drivers/power/ds2782_battery.c index d762a0cbc6af..2afbeec8b791 100644 --- a/drivers/power/ds2782_battery.c +++ b/drivers/power/ds2782_battery.c @@ -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) |