diff options
author | Rajkumar Kasirajan <[email protected]> | 2012-05-30 14:54:28 +0530 |
---|---|---|
committer | Lee Jones <[email protected]> | 2013-01-23 14:39:20 +0000 |
commit | 1a793a10899487d40ac3071f52a6e231260d935d (patch) | |
tree | 39b04ee77ef7739107c45938383119e010ad0c45 | |
parent | 3988043b0ee1104d4cca7c57bbc23b16ea798b6f (diff) |
ab8500-fg: Use correct battery charge full design
If battery is not identified while fg probe, mah_max_design gets
initialized with unknown battery's charge full design. Reinitialize
mah_max_design if battery is identified after fg probe.
Signed-off-by: Rajkumar Kasirajan <[email protected]>
Signed-off-by: Lee Jones <[email protected]>
Reviewed-by: Vijaya Kumar K-1 <[email protected]>
Reviewed-by: Marcus COOPER <[email protected]>
Reviewed-by: Olivier CLERGEAUD <[email protected]>
Reviewed-by: Arun MURTHY <[email protected]>
Reviewed-by: Rabin VINCENT <[email protected]>
Tested-by: Rupesh KUMAR <[email protected]>
Tested-by: Jonas ABERG <[email protected]>
-rw-r--r-- | drivers/power/ab8500_fg.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/power/ab8500_fg.c b/drivers/power/ab8500_fg.c index f94c9661e47e..25dae4c4b0ef 100644 --- a/drivers/power/ab8500_fg.c +++ b/drivers/power/ab8500_fg.c @@ -2250,7 +2250,8 @@ static int ab8500_fg_get_ext_psy_data(struct device *dev, void *data) case POWER_SUPPLY_PROP_TECHNOLOGY: switch (ext->type) { case POWER_SUPPLY_TYPE_BATTERY: - if (!di->flags.batt_id_received) { + if (!di->flags.batt_id_received && + di->bm->batt_id != BATTERY_UNKNOWN) { const struct abx500_battery_type *b; b = &(di->bm->bat_type[di->bm->batt_id]); |