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.
This commit is contained in:
Rodney W. Grimes 1993-09-08 17:38:05 +00:00
parent b3c17e952a
commit bfdbfb98fd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=414
3 changed files with 6 additions and 6 deletions

View File

@ -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)) {

View File

@ -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)) {

View File

@ -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)) {