summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tmk_core/protocol/chibios/chibios.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/protocol/chibios/chibios.c b/tmk_core/protocol/chibios/chibios.c
index a249af8d38..b879bdac77 100644
--- a/tmk_core/protocol/chibios/chibios.c
+++ b/tmk_core/protocol/chibios/chibios.c
@@ -184,7 +184,7 @@ void protocol_pre_task(void) {
184 /* Do this in the suspended state */ 184 /* Do this in the suspended state */
185 suspend_power_down(); // on AVR this deep sleeps for 15ms 185 suspend_power_down(); // on AVR this deep sleeps for 15ms
186 /* Remote wakeup */ 186 /* Remote wakeup */
187 if ((USB_DRIVER.status & USB_GETSTATUS_REMOTE_WAKEUP_ENABLED) && suspend_wakeup_condition()) { 187 if (suspend_wakeup_condition() && (USB_DRIVER.status & USB_GETSTATUS_REMOTE_WAKEUP_ENABLED)) {
188 usbWakeupHost(&USB_DRIVER); 188 usbWakeupHost(&USB_DRIVER);
189# if USB_SUSPEND_WAKEUP_DELAY > 0 189# if USB_SUSPEND_WAKEUP_DELAY > 0
190 // Some hubs, kvm switches, and monitors do 190 // Some hubs, kvm switches, and monitors do