]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
core: Fix lufa suspend callback(#234)
authortmk <hasu@tmk-kbd.com>
Thu, 23 Jul 2015 02:58:15 +0000 (11:58 +0900)
committertmk <hasu@tmk-kbd.com>
Thu, 23 Jul 2015 03:05:51 +0000 (12:05 +0900)
With matrix_power_down() in suspend event HHKB JP doesn't start up for some reason.
It is unneeded in actual and removed.

tmk_core/protocol/lufa/lufa.c

index 85fdeabdd14215a024645ca312b4275b540f4453..65c215bf850f2b09e7141a150e3fd10874a963bb 100644 (file)
@@ -179,7 +179,6 @@ void EVENT_USB_Device_Reset(void)
 void EVENT_USB_Device_Suspend()
 {
     print("[S]");
-    matrix_power_down();
 #ifdef SLEEP_LED_ENABLE
     sleep_led_enable();
 #endif