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