summaryrefslogtreecommitdiff
path: root/keyboards/ibm
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2024-01-26 16:32:06 +0000
committerGitHub <noreply@github.com>2024-01-26 16:32:06 +0000
commita632593769758244f10f577adb69b30e06f64985 (patch)
tree4e6264ac839a88ff927a75dc152aab0787282c56 /keyboards/ibm
parent728aa576b0cd65c6fb7cf77132fdcd06fcedb643 (diff)
Migrate and remove deprecated debug utils (#22961)
Diffstat (limited to 'keyboards/ibm')
-rw-r--r--keyboards/ibm/model_m/mschwingen/matrix.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/keyboards/ibm/model_m/mschwingen/matrix.c b/keyboards/ibm/model_m/mschwingen/matrix.c
index 9997b65975..361803edec 100644
--- a/keyboards/ibm/model_m/mschwingen/matrix.c
+++ b/keyboards/ibm/model_m/mschwingen/matrix.c
@@ -60,8 +60,7 @@ static bool read_rows_on_col(matrix_row_t current_matrix[], uint8_t current_col)
row_data = spi_read() << 8;
row_data |= spi_read();
- debug_hex8(~row_data);
- dprint(" ");
+ dprintf("%02X ", ~row_data);
// For each row...
for (uint8_t row_index = 0; row_index < MATRIX_ROWS; row_index++) {