summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2020-03-22 14:03:14 +0000
committerQMK Bot <hello@qmk.fm>2020-03-22 14:03:14 +0000
commit76cb2b11606e98f1390627331ad753564db63305 (patch)
treec0349a4b0541833cb49a3913022a8c7b8071db00
parent5117dff6a26aec4eca04fb9787b4f428884739bc (diff)
format code according to conventions [skip ci]0.8.69
-rw-r--r--quantum/quantum.c16
1 files changed, 6 insertions, 10 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c
index d7dbc49dc1..c857e5f7a1 100644
--- a/quantum/quantum.c
+++ b/quantum/quantum.c
@@ -120,13 +120,9 @@ __attribute__((weak)) bool process_record_kb(uint16_t keycode, keyrecord_t *reco
__attribute__((weak)) bool process_record_user(uint16_t keycode, keyrecord_t *record) { return true; }
-__attribute__ ((weak))
-void post_process_record_kb(uint16_t keycode, keyrecord_t *record) {
- post_process_record_user(keycode, record);
-}
+__attribute__((weak)) void post_process_record_kb(uint16_t keycode, keyrecord_t *record) { post_process_record_user(keycode, record); }
-__attribute__ ((weak))
-void post_process_record_user(uint16_t keycode, keyrecord_t *record) {}
+__attribute__((weak)) void post_process_record_user(uint16_t keycode, keyrecord_t *record) {}
void reset_keyboard(void) {
clear_keyboard();
@@ -182,8 +178,8 @@ uint16_t get_event_keycode(keyevent_t event) {
/* Get keycode, and then call keyboard function */
void post_process_record_quantum(keyrecord_t *record) {
- uint16_t keycode = get_record_keycode(record);
- post_process_record_kb(keycode, record);
+ uint16_t keycode = get_record_keycode(record);
+ post_process_record_kb(keycode, record);
}
/* Core keycode function, hands off handling to other functions,
@@ -208,7 +204,7 @@ bool process_record_quantum(keyrecord_t *record) {
#ifdef WPM_ENABLE
if (record->event.pressed) {
- update_wpm(keycode);
+ update_wpm(keycode);
}
#endif
@@ -666,7 +662,7 @@ void matrix_scan_quantum() {
#endif
#ifdef WPM_ENABLE
- decay_wpm();
+ decay_wpm();
#endif
#ifdef HAPTIC_ENABLE