diff options
author | Drashna Jaelre <drashna@live.com> | 2019-04-26 11:03:51 -0700 |
---|---|---|
committer | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2019-04-26 11:03:51 -0700 |
commit | 90cd383d4622b7d4603e05ad101916df47775d7c (patch) | |
tree | 8249d169fe72614b23a0aa271ef7d736284897ac /tmk_core/common | |
parent | 6caaf69357504299cc8c8f44414581d87fbec0b4 (diff) | |
download | qmk_firmware-90cd383d4622b7d4603e05ad101916df47775d7c.tar.gz qmk_firmware-90cd383d4622b7d4603e05ad101916df47775d7c.zip |
Fix wakeup function on ChibiOS (#5707)
Somebody was a very, very bad boy, and did a poor job of copy-pasting
Diffstat (limited to 'tmk_core/common')
-rw-r--r-- | tmk_core/common/chibios/suspend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/common/chibios/suspend.c b/tmk_core/common/chibios/suspend.c index 4a119ccefe..6027d69b78 100644 --- a/tmk_core/common/chibios/suspend.c +++ b/tmk_core/common/chibios/suspend.c @@ -82,7 +82,7 @@ void suspend_wakeup_init_user(void) { } */ __attribute__ ((weak)) void suspend_wakeup_init_kb(void) { - suspend_power_down_user(); + suspend_wakeup_init_user(); } /** \brief suspend wakeup condition |