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 | |
| 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
| -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 4a119ccef..6027d69b7 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) { } | |||
| 82 | */ | 82 | */ |
| 83 | __attribute__ ((weak)) | 83 | __attribute__ ((weak)) |
| 84 | void suspend_wakeup_init_kb(void) { | 84 | void suspend_wakeup_init_kb(void) { |
| 85 | suspend_power_down_user(); | 85 | suspend_wakeup_init_user(); |
| 86 | } | 86 | } |
| 87 | 87 | ||
| 88 | /** \brief suspend wakeup condition | 88 | /** \brief suspend wakeup condition |
