From 3653e4ed94f4012a11559fcd523149cf70555c1d Mon Sep 17 00:00:00 2001 From: rgrimes Date: Wed, 8 Sep 1993 17:38:05 +0000 Subject: 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. --- sys/dev/sio/sio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/dev/sio/sio.c') 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)) { -- cgit v1.1