aboutsummaryrefslogtreecommitdiff
path: root/keyboards/xd84/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/xd84/matrix.c')
-rw-r--r--keyboards/xd84/matrix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/xd84/matrix.c b/keyboards/xd84/matrix.c
index a4ddbee9a..92b8ff854 100644
--- a/keyboards/xd84/matrix.c
+++ b/keyboards/xd84/matrix.c
@@ -82,14 +82,14 @@ static bool read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row)
82 82
83//_____CUSTOM MATRIX IMPLEMENTATION____________________________________________________ 83//_____CUSTOM MATRIX IMPLEMENTATION____________________________________________________
84 84
85void custom_matrix_init(void) { 85void matrix_init_custom(void) {
86 pca9555_init(IC1); 86 pca9555_init(IC1);
87 pca9555_init(IC2); 87 pca9555_init(IC2);
88 88
89 init_pins(); 89 init_pins();
90} 90}
91 91
92bool custom_matrix_scan(matrix_row_t current_matrix[]) { 92bool matrix_scan_custom(matrix_row_t current_matrix[]) {
93 bool changed = false; 93 bool changed = false;
94 for (uint8_t current_row = 0; current_row < MATRIX_ROWS; current_row++) { 94 for (uint8_t current_row = 0; current_row < MATRIX_ROWS; current_row++) {
95 changed |= read_cols_on_row(current_matrix, current_row); 95 changed |= read_cols_on_row(current_matrix, current_row);