diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1993-09-08 17:38:05 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1993-09-08 17:38:05 +0000 |
commit | 3653e4ed94f4012a11559fcd523149cf70555c1d (patch) | |
tree | 60cb39bf3023b2e98278b8396704a02bb26dca5e /sys/dev/sio/sio.c | |
parent | 6b0f4b30a8432db2544a2f81525d21409c100ca5 (diff) | |
download | FreeBSD-src-3653e4ed94f4012a11559fcd523149cf70555c1d.zip FreeBSD-src-3653e4ed94f4012a11559fcd523149cf70555c1d.tar.gz |
From michaele@vice.ico.tek.com Wed Sep 8 09:50:45 1993
Subject: Re: Some small errors in GAMMA
4. Move printf("\n"); at line 491 in "/sys/i386/isa/sio.c" to after
COM_MULTIPORT block at line 512.
From rgrimes:
The above would cause the word (multiport) with out a new line to
appear after the uart type message if you had COM_MULTIPORT enabled.
Diffstat (limited to 'sys/dev/sio/sio.c')
-rw-r--r-- | sys/dev/sio/sio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c index dd72ce4..967abbf 100644 --- a/sys/dev/sio/sio.c +++ b/sys/dev/sio/sio.c @@ -41,7 +41,7 @@ * into the patch kit. Added in sioselect * from com.c. Added port 4 support. */ -static char rcsid[] = "$Header: /a/cvs/386BSD/src/sys/i386/isa/sio.c,v 1.5 1993/07/20 02:06:49 jkh Exp $"; +static char rcsid[] = "$Header: /a/cvs/386BSD/src/sys/i386/isa/sio.c,v 1.6 1993/08/28 03:02:49 rgrimes Exp $"; #include "sio.h" #if NSIO > 0 @@ -488,7 +488,6 @@ sioattach(isdp) } outb(iobase + com_fifo, 0); } - printf("\n"); #ifdef COM_MULTIPORT if (COM_ISMULTIPORT(isdp)) { struct isa_device *masterdev; @@ -509,6 +508,7 @@ sioattach(isdp) else com->multiport = FALSE; #endif /* COM_MULTIPORT */ + printf("\n"); #ifdef KGDB if (kgdb_dev == makedev(commajor, unit)) { |