battery: use POWER_NOW if CURRENT_NOW is not available

CURRENT_NOW was deprecated for some battery types in recent linux kernels
(2.6.36)
This commit is contained in:
Michael Stapelberg 2010-11-03 14:07:47 +01:00
parent 0846c307d0
commit 75670ba64a

View File

@ -58,6 +58,8 @@ void print_battery_info(int number, const char *format, bool last_full_capacity)
remaining = atoi(walk+1);
else if (BEGINS_WITH(last, "POWER_SUPPLY_CURRENT_NOW"))
present_rate = atoi(walk+1);
else if (BEGINS_WITH(last, "POWER_SUPPLY_POWER_NOW"))
present_rate = atoi(walk+1);
else if (BEGINS_WITH(last, "POWER_SUPPLY_STATUS=Charging"))
status = CS_CHARGING;
else if (BEGINS_WITH(last, "POWER_SUPPLY_STATUS=Full"))