summaryrefslogtreecommitdiff
path: root/com32/sysdump
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2010-02-07 20:08:46 -0800
committerH. Peter Anvin <hpa@zytor.com>2010-02-07 20:08:46 -0800
commit1a3d65ddc2b1ac48d798ae9a01de590678959175 (patch)
treec540d2ff63bacbc2d2b9f35b65d3260b827dcb5b /com32/sysdump
parentf9cf0cd843f83ec4214ad5d5ec2e75d5a6cd89dd (diff)
downloadsyslinux-1a3d65ddc2b1ac48d798ae9a01de590678959175.tar.gz
sysdump: use the same serial receive threshold as the coresyslinux-3.85-pre9
Match the core with regards to the serial receive threshold. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'com32/sysdump')
-rw-r--r--com32/sysdump/serial.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/sysdump/serial.c b/com32/sysdump/serial.c
index e12d7bd5..a3987531 100644
--- a/com32/sysdump/serial.c
+++ b/com32/sysdump/serial.c
@@ -108,7 +108,7 @@ int serial_init(struct serial_if *sif, const char *argv[])
}
/* Enable 16550A FIFOs if available */
- outb(0x41, port + FCR); /* Enable FIFO */
+ outb(0x01, port + FCR); /* Enable FIFO */
(void)inb(port + IER); /* Synchronize */
if (inb(port + IIR) < 0xc0)
outb(0x00, port + FCR); /* Disable FIFOs if non-functional */