diff options
author | Uwe Stuehler <uwe@cvs.openbsd.org> | 2005-07-02 15:39:05 +0000 |
---|---|---|
committer | Uwe Stuehler <uwe@cvs.openbsd.org> | 2005-07-02 15:39:05 +0000 |
commit | 2b9bc19f0032362cd4ad45f276fb2e870b975452 (patch) | |
tree | b305efecd75fa28727ce7565bc828f54095e671e | |
parent | 058b570e4e226e97cb292598e42ca6e9a0c306a6 (diff) |
xscale UART FIFOs are 32 bytes deep; found by deraadt@
-rw-r--r-- | sys/dev/ic/com.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/com.c b/sys/dev/ic/com.c index 5c4528d30a0..238fd92627e 100644 --- a/sys/dev/ic/com.c +++ b/sys/dev/ic/com.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com.c,v 1.100 2005/05/27 18:42:15 uwe Exp $ */ +/* $OpenBSD: com.c,v 1.101 2005/07/02 15:39:04 uwe Exp $ */ /* $NetBSD: com.c,v 1.82.4.1 1996/06/02 09:08:00 mrg Exp $ */ /* @@ -314,9 +314,9 @@ com_attach_subr(sc) break; #ifdef COM_PXA2X0 case COM_UART_PXA2X0: - printf(": pxa2x0, 16 byte fifo"); + printf(": pxa2x0, 32 byte fifo"); SET(sc->sc_hwflags, COM_HW_FIFO); - sc->sc_fifolen = 16; + sc->sc_fifolen = 32; if (sc->sc_iobase == comsiraddr) { SET(sc->sc_hwflags, COM_HW_SIR); printf(" (SIR)"); |