diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2005-11-02 22:35:07 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2005-11-02 22:35:07 +0000 |
commit | f24005cb0dff98bdcd290e01c6dc426255865870 (patch) | |
tree | b2110e43dc75c09f06d39c13dcea7081fe04476b | |
parent | 5171b0d6a8511f260dc6ae7a598f5f8f1797a237 (diff) |
change zaurus fifo lenght back to 32 until some issues are sorted out.
requested by uwe@.
-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 8563585b99a..7525347175a 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.4 2005/10/13 18:37:58 fgsch Exp $ */ +/* $OpenBSD: com_subr.c,v 1.5 2005/11/02 22:35:06 fgsch Exp $ */ /* * Copyright (c) 1997 - 1999, Jason Downs. All rights reserved. @@ -278,9 +278,9 @@ com_attach_subr(sc) break; #ifdef COM_PXA2X0 case COM_UART_PXA2X0: - printf(": pxa2x0, 64 byte fifo"); + printf(": pxa2x0, 32 byte fifo"); SET(sc->sc_hwflags, COM_HW_FIFO); - sc->sc_fifolen = 64; + sc->sc_fifolen = 32; if (sc->sc_iobase == comsiraddr) { SET(sc->sc_hwflags, COM_HW_SIR); printf(" (SIR)"); |