aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorSicelo A. Mhlongo <absicsz@gmail.com>2024-02-26 21:37:22 +0200
committerSebastian Reichel <sebastian.reichel@collabora.com>2024-02-27 21:13:11 +0100
commit8fbb11162504f2de167a8ccd2d2c55a849d2c5ea (patch)
treef6d260ae99031af16b15d45f7f3b34eacbd36f00
parentpower: reset: rmobile-reset: Make sysc_base2 local (diff)
downloadwireguard-linux-8fbb11162504f2de167a8ccd2d2c55a849d2c5ea.tar.xz
wireguard-linux-8fbb11162504f2de167a8ccd2d2c55a849d2c5ea.zip
power: supply: bq27xxx: Report charge full state correctly
When reporting the charging status, the existing code reports the battery as full only when the reported current flowing is exactly 0mA, which is unlikely in practice. Fix the reporting by giving priority to the battery's full state indication/flag. Tested on the Nokia N900 with bq27200 fuel gauge. Signed-off-by: Sicelo A. Mhlongo <absicsz@gmail.com> Link: https://lore.kernel.org/r/20240226193722.2173624-1-absicsz@gmail.com Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
-rw-r--r--drivers/power/supply/bq27xxx_battery.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/drivers/power/supply/bq27xxx_battery.c b/drivers/power/supply/bq27xxx_battery.c
index 363428530ee6..abca56834468 100644
--- a/drivers/power/supply/bq27xxx_battery.c
+++ b/drivers/power/supply/bq27xxx_battery.c
@@ -1828,17 +1828,14 @@ static int bq27xxx_battery_current_and_status(
val_curr->intval = curr;
if (val_status) {
- if (curr > 0) {
+ if (bq27xxx_battery_is_full(di, flags))
+ val_status->intval = POWER_SUPPLY_STATUS_FULL;
+ else if (curr > 0)
val_status->intval = POWER_SUPPLY_STATUS_CHARGING;
- } else if (curr < 0) {
+ else if (curr < 0)
val_status->intval = POWER_SUPPLY_STATUS_DISCHARGING;
- } else {
- if (bq27xxx_battery_is_full(di, flags))
- val_status->intval = POWER_SUPPLY_STATUS_FULL;
- else
- val_status->intval =
- POWER_SUPPLY_STATUS_NOT_CHARGING;
- }
+ else
+ val_status->intval = POWER_SUPPLY_STATUS_NOT_CHARGING;
}
return 0;