The check is supposed to avoid redundant update notifications, so it
should check for the difference between old and new voltage exceeding
a threshold.

Also make sure the result of a failed read is never stored.

Signed-off-by: Maarten ter Huurne <[email protected]>
---
 drivers/power/jz4740-battery.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/power/jz4740-battery.c b/drivers/power/jz4740-battery.c
index abdfc21..88f04f4 100644
--- a/drivers/power/jz4740-battery.c
+++ b/drivers/power/jz4740-battery.c
@@ -208,7 +208,7 @@ static void jz_battery_update(struct jz_battery *jz_battery)
        }
 
        voltage = jz_battery_read_voltage(jz_battery);
-       if (abs(voltage - jz_battery->voltage) < 50000) {
+       if (voltage >= 0 && abs(voltage - jz_battery->voltage) > 50000) {
                jz_battery->voltage = voltage;
                has_changed = true;
        }
-- 
2.6.2

Reply via email to