summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/extpower_usb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/extpower_usb.c b/common/extpower_usb.c
index 895406861f..a31363e04b 100644
--- a/common/extpower_usb.c
+++ b/common/extpower_usb.c
@@ -373,7 +373,7 @@ static int usb_need_boost(int dev_type)
{
if (dev_type & POWERED_5000_DEVICE_TYPE)
return 0;
- if (chipset_in_state(CHIPSET_STATE_ON))
+ if (chipset_in_state(CHIPSET_STATE_ON | CHIPSET_STATE_SUSPEND))
return 1;
return (dev_type != TSU6721_TYPE_NONE);
}