aboutsummaryrefslogtreecommitdiffstats
path: root/quantum
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2020-05-21 17:39:29 +0000
committerQMK Bot <hello@qmk.fm>2020-05-21 17:39:29 +0000
commitc63fd051dade376ec8d44245b3b8058dd5549af6 (patch)
treeeacca4fdb0b8156ebad95a14e97fe05473113bbc /quantum
parent65150984bd1f9c301b080652fe60b181765bb9be (diff)
downloadfirmware-c63fd051dade376ec8d44245b3b8058dd5549af6.tar.gz
firmware-c63fd051dade376ec8d44245b3b8058dd5549af6.tar.bz2
firmware-c63fd051dade376ec8d44245b3b8058dd5549af6.zip
format code according to conventions [skip ci]
Diffstat (limited to 'quantum')
-rw-r--r--quantum/matrix.c4
-rw-r--r--quantum/split_common/matrix.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/quantum/matrix.c b/quantum/matrix.c
index 9e998508a..c68c56cac 100644
--- a/quantum/matrix.c
+++ b/quantum/matrix.c
@@ -89,7 +89,7 @@ static void init_pins(void) {
}
}
-static bool read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row) {
+static bool read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row) {
// Start with a clear matrix row
matrix_row_t current_row_value = 0;
@@ -149,7 +149,7 @@ static bool read_rows_on_col(matrix_row_t current_matrix[], uint8_t current_col)
// For each row...
for (uint8_t row_index = 0; row_index < MATRIX_ROWS; row_index++) {
// Store last value of row prior to reading
- matrix_row_t last_row_value = current_matrix[row_index];
+ matrix_row_t last_row_value = current_matrix[row_index];
matrix_row_t current_row_value = last_row_value;
// Check row pin state
diff --git a/quantum/split_common/matrix.c b/quantum/split_common/matrix.c
index 27c37d4b0..c3b43020c 100644
--- a/quantum/split_common/matrix.c
+++ b/quantum/split_common/matrix.c
@@ -106,7 +106,7 @@ static void init_pins(void) {
}
}
-static bool read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row) {
+static bool read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row) {
// Start with a clear matrix row
matrix_row_t current_row_value = 0;
@@ -166,7 +166,7 @@ static bool read_rows_on_col(matrix_row_t current_matrix[], uint8_t current_col)
// For each row...
for (uint8_t row_index = 0; row_index < ROWS_PER_HAND; row_index++) {
// Store last value of row prior to reading
- matrix_row_t last_row_value = current_matrix[row_index];
+ matrix_row_t last_row_value = current_matrix[row_index];
matrix_row_t current_row_value = last_row_value;
// Check row pin state