From 7d25f1c31a5d8355275ebe5c3054453154ba1ccd Mon Sep 17 00:00:00 2001 From: Max Wash Date: Sun, 29 Mar 2026 11:32:03 +0100 Subject: [PATCH] x86_64: suppress serial port input logging --- arch/x86_64/serial.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/x86_64/serial.c b/arch/x86_64/serial.c index 97212eb..04a45a6 100644 --- a/arch/x86_64/serial.c +++ b/arch/x86_64/serial.c @@ -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; }