dect
/
linux-2.6
Archived
13
0
Fork 0

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>
This commit is contained in:
Ryan Mallon 2010-06-15 12:44:59 +12:00 committed by Anton Vorontsov
parent 7e27d6e778
commit 2d31757c87
1 changed files with 1 additions and 1 deletions

View File

@ -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)