summaryrefslogtreecommitdiff
path: root/common/power_button_x86.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/power_button_x86.c')
-rw-r--r--common/power_button_x86.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/power_button_x86.c b/common/power_button_x86.c
index 539bfce347..8b221b8e30 100644
--- a/common/power_button_x86.c
+++ b/common/power_button_x86.c
@@ -118,11 +118,12 @@ static void set_pwrbtn_to_pch(int high)
* If the battery is discharging and low enough we'd shut down the
* system, don't press the power button.
*/
+#ifdef CONFIG_CHARGER
if (!high && charge_want_shutdown()) {
CPRINTS("PB PCH pwrbtn ignored due to battery level");
high = 1;
}
-
+#endif
CPRINTS("PB PCH pwrbtn=%s", high ? "HIGH" : "LOW");
gpio_set_level(GPIO_PCH_PWRBTN_L, high);
}