From: Krzysztof Kozlowski Date: Fri, 26 Apr 2019 09:59:02 +0000 (+0200) Subject: power: supply: bq27xxx_battery: Notify also about status changes X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=243f8ffc883a120516b1280c799b2e5081169efd;p=linux.git power: supply: bq27xxx_battery: Notify also about status changes User-space might be interested in receiving uevents when the charging starts/stops or if conditions of battery changes (e.g. over-temperature). Notify about changes in battery also when the flags change, not only SoC. Signed-off-by: Krzysztof Kozlowski Reviewed-by: Pali Rohár Signed-off-by: Sebastian Reichel --- diff --git a/drivers/power/supply/bq27xxx_battery.c b/drivers/power/supply/bq27xxx_battery.c index 29b3a40568650..195c18c2f426e 100644 --- a/drivers/power/supply/bq27xxx_battery.c +++ b/drivers/power/supply/bq27xxx_battery.c @@ -1612,7 +1612,8 @@ void bq27xxx_battery_update(struct bq27xxx_device_info *di) di->charge_design_full = bq27xxx_battery_read_dcap(di); } - if (di->cache.capacity != cache.capacity) + if ((di->cache.capacity != cache.capacity) || + (di->cache.flags != cache.flags)) power_supply_changed(di->bat); if (memcmp(&di->cache, &cache, sizeof(cache)) != 0)