summaryrefslogtreecommitdiffstats
path: root/tmk_core
diff options
context:
space:
mode:
authortmk <hasu@tmk-kbd.com>2015-07-23 04:58:15 +0200
committertmk <hasu@tmk-kbd.com>2015-07-23 05:05:51 +0200
commit35203cad6ad4294409bd39dd85ff7858b353570d (patch)
tree927f844c31017833cc12501643a8201780392cb7 /tmk_core
parentd4220ac9f36209ba7e641f35181b41f84b9c98da (diff)
downloadqmk_firmware-35203cad6ad4294409bd39dd85ff7858b353570d.tar.gz
qmk_firmware-35203cad6ad4294409bd39dd85ff7858b353570d.tar.xz
core: Fix lufa suspend callback(#234)
With matrix_power_down() in suspend event HHKB JP doesn't start up for some reason. It is unneeded in actual and removed.
Diffstat (limited to 'tmk_core')
-rw-r--r--tmk_core/protocol/lufa/lufa.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/tmk_core/protocol/lufa/lufa.c b/tmk_core/protocol/lufa/lufa.c
index 85fdeabdd..65c215bf8 100644
--- a/tmk_core/protocol/lufa/lufa.c
+++ b/tmk_core/protocol/lufa/lufa.c
@@ -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