commit | e91926e9ea9073d8ce95b74602e8c2d775f5a793 | [log] [tgz] |
---|---|---|
author | Anton Vorontsov <cbouatmailru@gmail.com> | Sun Jan 13 02:44:54 2008 +0300 |
committer | Anton Vorontsov <cbouatmailru@gmail.com> | Sat Feb 02 02:44:34 2008 +0300 |
tree | 2aca23d48ea90ab9d78fc38ce9b5abdf4e0d461f | |
parent | ae4bb152901e406074ae2a205e1c42941a46bbaf [diff] [blame] |
apm_power: check I.intval for zero value, we use it as the divisor Signed-off-by: Anton Vorontsov <cbou@mail.ru>
diff --git a/drivers/power/apm_power.c b/drivers/power/apm_power.c index a832a9a..a489227 100644 --- a/drivers/power/apm_power.c +++ b/drivers/power/apm_power.c
@@ -133,6 +133,9 @@ return -1; } + if (!I.intval) + return 0; + switch (source) { case SOURCE_CHARGE: full_prop = POWER_SUPPLY_PROP_CHARGE_FULL;