summaryrefslogtreecommitdiffstats
path: root/tmk_core
diff options
context:
space:
mode:
authoralex-ong <the.onga@gmail.com>2019-01-26 07:38:52 +0100
committeralex-ong <the.onga@gmail.com>2019-01-26 07:38:52 +0100
commit574fc6444bf48d10317c72bc6a5c61f7e46938a3 (patch)
tree04bc9d579919447822ba6d30d8a9f4ba60321c09 /tmk_core
parent4d8733591f30a299d6ac99165c834162d2c08fd1 (diff)
downloadqmk_firmware-574fc6444bf48d10317c72bc6a5c61f7e46938a3.tar.gz
qmk_firmware-574fc6444bf48d10317c72bc6a5c61f7e46938a3.tar.xz
Whitespace cleanup.
Diffstat (limited to 'tmk_core')
-rw-r--r--tmk_core/common.mk2
-rw-r--r--tmk_core/common/keyboard.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/tmk_core/common.mk b/tmk_core/common.mk
index 335a36cfe..063115acb 100644
--- a/tmk_core/common.mk
+++ b/tmk_core/common.mk
@@ -1,5 +1,4 @@
COMMON_DIR = common
-
ifeq ($(PLATFORM),AVR)
PLATFORM_COMMON_DIR = $(COMMON_DIR)/avr
else ifeq ($(PLATFORM),CHIBIOS)
@@ -62,6 +61,7 @@ ifeq ($(PLATFORM),TEST)
endif
+
# Option modules
BOOTMAGIC_ENABLE ?= no
VALID_MAGIC_TYPES := yes full lite
diff --git a/tmk_core/common/keyboard.c b/tmk_core/common/keyboard.c
index d22300116..25be28d02 100644
--- a/tmk_core/common/keyboard.c
+++ b/tmk_core/common/keyboard.c
@@ -163,7 +163,7 @@ bool is_keyboard_master(void) {
*/
void keyboard_init(void) {
timer_init();
- matrix_init();
+ matrix_init();
#ifdef QWIIC_ENABLE
qwiic_init();
#endif
@@ -223,7 +223,7 @@ void keyboard_task(void)
uint8_t keys_processed = 0;
#endif
- matrix_scan();
+ matrix_scan();
if (is_keyboard_master()) {
for (uint8_t r = 0; r < MATRIX_ROWS; r++) {
@@ -231,7 +231,7 @@ void keyboard_task(void)
matrix_change = matrix_row ^ matrix_prev[r];
if (matrix_change) {
#ifdef MATRIX_HAS_GHOST
- if (has_ghost_in_row(r, matrix_row)) continue;
+ if (has_ghost_in_row(r, matrix_row)) { continue; }
#endif
if (debug_matrix) matrix_print();
for (uint8_t c = 0; c < MATRIX_COLS; c++) {