aboutsummaryrefslogtreecommitdiff
path: root/int15ps2.h
diff options
context:
space:
mode:
authorJavier <dev.git@javispedro.com>2022-04-30 21:45:45 +0200
committerJavier <dev.git@javispedro.com>2022-04-30 21:45:45 +0200
commit3b240b60f05bd6fec34413791e1d215afc2bdde5 (patch)
treed7f16d7114e6f3c3ca9536074d96c5815a85f03a /int15ps2.h
parent9595ebb6348544a2945470a5f271de7b58549bcd (diff)
downloadvbados-3b240b60f05bd6fec34413791e1d215afc2bdde5.tar.gz
vbados-3b240b60f05bd6fec34413791e1d215afc2bdde5.zip
refactor: switch debug log to a more convenient printf-like API
Diffstat (limited to 'int15ps2.h')
-rw-r--r--int15ps2.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/int15ps2.h b/int15ps2.h
index 438dfd8..dfc5b3a 100644
--- a/int15ps2.h
+++ b/int15ps2.h
@@ -227,9 +227,7 @@ static bool ps2m_detect_wheel(void)
if (device_id != PS2M_DEVICE_ID_PLAIN) {
// TODO: Likely we have to accept more device IDs here
- dlog_print("Unknown initial mouse device_id=");
- dlog_printx(device_id);
- dlog_endline();
+ dprintf("Unknown initial mouse device_id=0x%x\n", device_id);
return false;
}