power: supply: sc27xx: Fix conditon to enable the FGU interrupt
authorYuanjiang Yu <yuanjiang.yu@unisoc.com>
Wed, 31 Jul 2019 10:00:24 +0000 (18:00 +0800)
committerSebastian Reichel <sebastian.reichel@collabora.com>
Mon, 2 Sep 2019 20:47:09 +0000 (22:47 +0200)
We should allow to enable FGU interrupt to adjust the battery capacity,
when charging status is POWER_SUPPLY_STATUS_DISCHARGING.

Signed-off-by: Yuanjiang Yu <yuanjiang.yu@unisoc.com>
Signed-off-by: Baolin Wang <baolin.wang@linaro.org>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
drivers/power/supply/sc27xx_fuel_gauge.c

index 1072fcd..db7d07d 100644 (file)
@@ -1098,7 +1098,8 @@ static int sc27xx_fgu_suspend(struct device *dev)
         * If we are charging, then no need to enable the FGU interrupts to
         * adjust the battery capacity.
         */
-       if (status != POWER_SUPPLY_STATUS_NOT_CHARGING)
+       if (status != POWER_SUPPLY_STATUS_NOT_CHARGING &&
+           status != POWER_SUPPLY_STATUS_DISCHARGING)
                return 0;
 
        ret = regmap_update_bits(data->regmap, data->base + SC27XX_FGU_INT_EN,