summaryrefslogtreecommitdiff
path: root/drivers/power/pmu_battery.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2010-01-12 21:13:06 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2010-01-12 21:13:06 -0800
commit53ff7095cce683813be075379160b8e4e6ea8b85 (patch)
tree723754032e6eb42af3f555946b9786900a8f659c /drivers/power/pmu_battery.c
parentbb7d3f24c71e528989501617651b669fbed798cb (diff)
parentd54e7929d8073b0fff8af16f8ff6ebbba6fc4154 (diff)
Merge git://git.infradead.org/battery-2.6
* git://git.infradead.org/battery-2.6: pmu_battery: Fix battery full reporting
Diffstat (limited to 'drivers/power/pmu_battery.c')
-rw-r--r--drivers/power/pmu_battery.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/power/pmu_battery.c b/drivers/power/pmu_battery.c
index 9346a862f1f..9c87ad56480 100644
--- a/drivers/power/pmu_battery.c
+++ b/drivers/power/pmu_battery.c
@@ -89,6 +89,8 @@ static int pmu_bat_get_property(struct power_supply *psy,
case POWER_SUPPLY_PROP_STATUS:
if (pbi->flags & PMU_BATT_CHARGING)
val->intval = POWER_SUPPLY_STATUS_CHARGING;
+ else if (pmu_power_flags & PMU_PWR_AC_PRESENT)
+ val->intval = POWER_SUPPLY_STATUS_FULL;
else
val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
break;