summaryrefslogtreecommitdiffstats
path: root/tmk_core
diff options
context:
space:
mode:
authoryoyoerx <kevin.wepasnick@gmail.com>2016-03-09 20:04:14 +0100
committeryoyoerx <kevin.wepasnick@gmail.com>2016-03-09 20:04:14 +0100
commitd58b14e880580671a297be81303acbef5e28e0b3 (patch)
tree1bdc01f6b3acf717389049a95193846bdb79a836 /tmk_core
parent7d3ebd7b40b96f576fe4608b33f47329c334925b (diff)
downloadqmk_firmware-d58b14e880580671a297be81303acbef5e28e0b3.tar.gz
qmk_firmware-d58b14e880580671a297be81303acbef5e28e0b3.tar.xz
Addressed void* return warning & coding style
Diffstat (limited to 'tmk_core')
-rw-r--r--tmk_core/common/matrix.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmk_core/common/matrix.h b/tmk_core/common/matrix.h
index 85415df71..0b013fc98 100644
--- a/tmk_core/common/matrix.h
+++ b/tmk_core/common/matrix.h
@@ -64,8 +64,8 @@ void matrix_power_up(void);
void matrix_power_down(void);
/* keyboard-specific setup/loop functionality */
-void * matrix_init_kb(void);
-void * matrix_scan_kb(void);
+void matrix_init_kb(void);
+void matrix_scan_kb(void);
#ifdef __cplusplus
}