x86_64: suppress serial port input logging

This commit is contained in:
2026-03-29 11:32:03 +01:00
parent 95d33ddcb9
commit 7d25f1c31a
+2
View File
@@ -138,6 +138,7 @@ static struct console serialcon = {
static int serial_irq1(void)
{
#if 0
if (serial_received(COM1)) {
unsigned char c = serial_recv_byte(COM1);
printk("serial: COM1 received %c", c);
@@ -147,6 +148,7 @@ static int serial_irq1(void)
unsigned char c = serial_recv_byte(COM3);
printk("serial: COM3 received %c", c);
}
#endif
return 0;
}