Kernel: Convert klog() => dmesgln() in PS2MouseDevice

This commit is contained in:
Andreas Kling 2021-03-09 20:31:14 +01:00
parent 52ef08081c
commit 5fd3006db2

View file

@ -247,9 +247,9 @@ UNMAP_AFTER_INIT bool PS2MouseDevice::initialize()
}
if (device_id == PS2MOUSE_INTELLIMOUSE_ID) {
m_has_wheel = true;
klog() << "PS2MouseDevice: Mouse wheel enabled!";
dmesgln("PS2MouseDevice: Mouse wheel enabled!");
} else {
klog() << "PS2MouseDevice: No mouse wheel detected!";
dmesgln("PS2MouseDevice: No mouse wheel detected!");
}
if (device_id == PS2MOUSE_INTELLIMOUSE_ID) {
@ -262,7 +262,7 @@ UNMAP_AFTER_INIT bool PS2MouseDevice::initialize()
if (device_id == PS2MOUSE_INTELLIMOUSE_EXPLORER_ID) {
m_has_five_buttons = true;
klog() << "PS2MouseDevice: 5 buttons enabled!";
dmesgln("PS2MouseDevice: 5 buttons enabled!");
}
return true;
}