diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2005-10-13 01:59:43 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2005-10-13 01:59:43 +0000 |
commit | 143be1c81495de043ca40f722a97dc262dc0dcf7 (patch) | |
tree | e1a05b8baeb799c664bd7cb1e85e262ddc028eee | |
parent | 7a39f945b0268a68c1b554f5729108bc3ae10dd1 (diff) |
first thing found by the fifo tester; pxa2x0 uarts are actually 64 bytes
deep. ok by uwe@ who confirmed this against specs.
-rw-r--r-- | sys/dev/ic/com_subr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/com_subr.c b/sys/dev/ic/com_subr.c index 57c6e683109..a00a5e99780 100644 --- a/sys/dev/ic/com_subr.c +++ b/sys/dev/ic/com_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com_subr.c,v 1.1 2005/09/26 22:32:06 miod Exp $ */ +/* $OpenBSD: com_subr.c,v 1.2 2005/10/13 01:59:42 fgsch Exp $ */ /* * Copyright (c) 1997 - 1999, Jason Downs. All rights reserved. @@ -277,9 +277,9 @@ com_attach_subr(sc) break; #ifdef COM_PXA2X0 case COM_UART_PXA2X0: - printf(": pxa2x0, 32 byte fifo"); + printf(": pxa2x0, 64 byte fifo"); SET(sc->sc_hwflags, COM_HW_FIFO); - sc->sc_fifolen = 32; + sc->sc_fifolen = 64; if (sc->sc_iobase == comsiraddr) { SET(sc->sc_hwflags, COM_HW_SIR); printf(" (SIR)"); |