summaryrefslogtreecommitdiffstats
path: root/tmk_core/common
diff options
context:
space:
mode:
authorJeremiah <barrar@users.noreply.github.com>2017-05-14 02:22:38 +0200
committerJeremiah <barrar@users.noreply.github.com>2017-05-14 02:22:38 +0200
commit7b7e285a984a5bf1f7f38f1b5846811dfcb3a185 (patch)
tree905219e36a9f49efa6859e2a67f81dc10b45ad56 /tmk_core/common
parentacd3e97b83aac14961d1892b0b8333963f499505 (diff)
downloadqmk_firmware-7b7e285a984a5bf1f7f38f1b5846811dfcb3a185.tar.gz
qmk_firmware-7b7e285a984a5bf1f7f38f1b5846811dfcb3a185.tar.xz
should be using matrix_row_t
Diffstat (limited to 'tmk_core/common')
-rw-r--r--tmk_core/common/keyboard.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tmk_core/common/keyboard.c b/tmk_core/common/keyboard.c
index 0116053fb..24cc28892 100644
--- a/tmk_core/common/keyboard.c
+++ b/tmk_core/common/keyboard.c
@@ -63,9 +63,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifdef MATRIX_HAS_GHOST
-static uint16_t matrix_ghost_check[MATRIX_ROWS];
+static matrix_row_t matrix_ghost_check[MATRIX_ROWS];
-static inline bool countones(uint16_t data)
+static inline bool countones(matrix_row_t data)
{
int count = 0;
for (int col = 0; col < MATRIX_COLS; col++) {
@@ -77,7 +77,7 @@ static inline bool countones(uint16_t data)
}
return false;
}
-static inline bool has_ghost_in_row(uint8_t row, uint16_t rowdata)
+static inline bool has_ghost_in_row(uint8_t row, matrix_row_t rowdata)
{
rowdata &= matrix_ghost_check[row];
if (((rowdata - 1) & rowdata) == 0){