Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-4]: src/sys/arch/i386/stand/lib Pull up revision 1.4 (requested...



details:   https://anonhg.NetBSD.org/src/rev/f12c9ee8c961
branches:  netbsd-1-4
changeset: 470202:f12c9ee8c961
user:      he <he%NetBSD.org@localhost>
date:      Mon Jan 24 10:46:05 2000 +0000

description:
Pull up revision 1.4 (requested by drochner):
  Raise the serial carrier lines in console initialization, similar
  to sys/dev/ic/com.c revision 1.165.

diffstat:

 sys/arch/i386/stand/lib/comio_direct.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 205ca4f6542a -r f12c9ee8c961 sys/arch/i386/stand/lib/comio_direct.c
--- a/sys/arch/i386/stand/lib/comio_direct.c    Sun Jan 23 13:57:42 2000 +0000
+++ b/sys/arch/i386/stand/lib/comio_direct.c    Mon Jan 24 10:46:05 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: comio_direct.c,v 1.3 1998/01/05 07:02:58 perry Exp $   */
+/*     $NetBSD: comio_direct.c,v 1.3.8.1 2000/01/24 10:46:05 he Exp $  */
 
 /*-
  * Copyright (c) 1993, 1994, 1995, 1996, 1997
@@ -211,7 +211,7 @@
        outb(combase + com_dlbl, rate);
        outb(combase + com_dlbh, rate >> 8);
        outb(combase + com_cfcr, LCR_8BITS);
-       outb(combase + com_mcr, 0);
+       outb(combase + com_mcr, MCR_DTR | MCR_RTS);
        outb(combase + com_fifo,
            FIFO_ENABLE | FIFO_RCV_RST | FIFO_XMT_RST | FIFO_TRIGGER_1);
        outb(combase + com_ier, 0);



Home | Main Index | Thread Index | Old Index