aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/jones
diff options
context:
space:
mode:
authorJoel Challis2024-07-27 07:02:51 +0200
committerGitHub2024-07-27 07:02:51 +0200
commit02b43b4b603a426627c63e7bd0e48de8e88028e6 (patch)
tree4cc018bc3891aa66d180611b23d1339771972022 /keyboards/jones
parent20ae67ba01c4fd934ae73476a17c8e7d36c821d0 (diff)
Refactor use of `matrix_scan_kb` (#24200)
Diffstat (limited to 'keyboards/jones')
-rw-r--r--keyboards/jones/v03/matrix.c3
-rw-r--r--keyboards/jones/v03_1/matrix.c3
2 files changed, 0 insertions, 6 deletions
diff --git a/keyboards/jones/v03/matrix.c b/keyboards/jones/v03/matrix.c
index 5663f1a8fc..d8bc134cf7 100644
--- a/keyboards/jones/v03/matrix.c
+++ b/keyboards/jones/v03/matrix.c
@@ -79,8 +79,6 @@ static bool read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row)
void matrix_init_custom(void) {
// initialize key pins
init_pins();
-
- matrix_init_kb();
}
bool matrix_scan_custom(matrix_row_t current_matrix[]) {
@@ -91,6 +89,5 @@ bool matrix_scan_custom(matrix_row_t current_matrix[]) {
changed |= read_cols_on_row(current_matrix, current_row);
}
- matrix_scan_kb();
return changed;
}
diff --git a/keyboards/jones/v03_1/matrix.c b/keyboards/jones/v03_1/matrix.c
index 5663f1a8fc..d8bc134cf7 100644
--- a/keyboards/jones/v03_1/matrix.c
+++ b/keyboards/jones/v03_1/matrix.c
@@ -79,8 +79,6 @@ static bool read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row)
void matrix_init_custom(void) {
// initialize key pins
init_pins();
-
- matrix_init_kb();
}
bool matrix_scan_custom(matrix_row_t current_matrix[]) {
@@ -91,6 +89,5 @@ bool matrix_scan_custom(matrix_row_t current_matrix[]) {
changed |= read_cols_on_row(current_matrix, current_row);
}
- matrix_scan_kb();
return changed;
}