diff options
author | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2021-04-29 13:36:47 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 13:36:47 +1000 |
commit | 39bc8163d013b5c7e148b7e95b3883dc0adb95ba (patch) | |
tree | c58437419875641985bbbf8f1434b3a0d58ecde6 /tmk_core/common/avr | |
parent | d8167779cdfb243cb140782210d2cc6a7cb9b123 (diff) | |
download | qmk_firmware-39bc8163d013b5c7e148b7e95b3883dc0adb95ba.tar.gz qmk_firmware-39bc8163d013b5c7e148b7e95b3883dc0adb95ba.zip |
[CI] Format code according to conventions (#12731)
Co-authored-by: QMK Bot <hello@qmk.fm>
Diffstat (limited to 'tmk_core/common/avr')
-rw-r--r-- | tmk_core/common/avr/suspend.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tmk_core/common/avr/suspend.c b/tmk_core/common/avr/suspend.c index 1c2bf9cb46..e9ee0aefdd 100644 --- a/tmk_core/common/avr/suspend.c +++ b/tmk_core/common/avr/suspend.c @@ -218,9 +218,9 @@ void suspend_wakeup_init(void) { #if defined(RGBLIGHT_SLEEP) && defined(RGBLIGHT_ENABLE) rgblight_wakeup(); #endif -# if defined(RGB_MATRIX_ENABLE) +#if defined(RGB_MATRIX_ENABLE) rgb_matrix_set_suspend_state(false); -# endif +#endif suspend_wakeup_init_kb(); } |