summaryrefslogtreecommitdiff
path: root/quantum/led.c
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 /quantum/led.c
parent728aa576b0cd65c6fb7cf77132fdcd06fcedb643 (diff)
Migrate and remove deprecated debug utils (#22961)
Diffstat (limited to 'quantum/led.c')
-rw-r--r--quantum/led.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/quantum/led.c b/quantum/led.c
index 8d86374a6f..1e7ee9db76 100644
--- a/quantum/led.c
+++ b/quantum/led.c
@@ -183,9 +183,7 @@ void led_task(void) {
last_led_modification_time = timer_read32();
if (debug_keyboard) {
- debug("led_task: ");
- debug_hex8(led_status);
- debug("\n");
+ dprintf("led_task: %02X\n", led_status);
}
led_set(led_status);
}