From e7fb1f97a5f95bcfd1d924b345f98bc0b496f5c0 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 10 Feb 2021 20:28:16 +0100 Subject: Print to streams instead of serial console --- kernel/drivers/mouse.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'kernel/drivers') diff --git a/kernel/drivers/mouse.c b/kernel/drivers/mouse.c index b03ed50..1e7fd1a 100644 --- a/kernel/drivers/mouse.c +++ b/kernel/drivers/mouse.c @@ -136,8 +136,9 @@ void mouse_install(void) mouse_serial_write(0xF2); mouse_serial_read(); status = (u8)mouse_serial_read(); - if (status == 3) - printf("Scrollwheel support!\n"); + if (status == 3) { + }; + /* printf("Scrollwheel support!\n"); */ // Activate 4th and 5th mouse buttons mouse_serial_write(0xF2); @@ -158,8 +159,9 @@ void mouse_install(void) mouse_serial_write(0xF2); mouse_serial_read(); status = (u8)mouse_serial_read(); - if (status == 4) - printf("4th and 5th mouse button support!\n"); + if (status == 4) { + }; + /* printf("4th and 5th mouse button support!\n"); */ /* TODO: Fix mouse laggyness mouse_serial_write(0xE8); -- cgit v1.2.3