diff options
author | steve <steve@FreeBSD.org> | 1999-01-26 04:02:54 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-01-26 04:02:54 +0000 |
commit | d4b046f17676f0e87b2a32e715ba3abd7dbeece5 (patch) | |
tree | 5bfcbf297480a2d9730a4169a2cce5f43e329b0f | |
parent | af2672e9d7f1c097860b179e1f97a09eb2fdd992 (diff) | |
download | FreeBSD-src-d4b046f17676f0e87b2a32e715ba3abd7dbeece5.zip FreeBSD-src-d4b046f17676f0e87b2a32e715ba3abd7dbeece5.tar.gz |
Add support for the USR3031 PNP modem. Also fix a minor typo since I was
here.
-rw-r--r-- | sys/i386/isa/sio.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/i386/isa/sio.c b/sys/i386/isa/sio.c index 7660965..995d8a8 100644 --- a/sys/i386/isa/sio.c +++ b/sys/i386/isa/sio.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)com.c 7.5 (Berkeley) 5/16/91 - * $Id: sio.c,v 1.223 1999/01/12 01:04:37 eivind Exp $ + * $Id: sio.c,v 1.224 1999/01/19 00:21:41 peter Exp $ */ #include "opt_comconsole.h" @@ -754,7 +754,7 @@ sioprobe(dev) * Leave MCR_IENABLE alone. For ports without a master port, it gates * the OUT2 output of the UART to * the ICU input. Closing the gate would give a floating ICU input - * (unless there is another device driving at) and spurious interrupts. + * (unless there is another device driving it) and spurious interrupts. * (On the system that this was first tested on, the input floats high * and gives a (masked) interrupt as soon as the gate is closed.) */ @@ -2757,6 +2757,7 @@ static pnpid_t siopnp_ids[] = { { 0x7121b04e, "SupraExpress 56i Sp"}, { 0x11007256, "USR0011"}, { 0x30207256, "USR2030"}, + { 0x31307256, "USR3031"}, { 0 } }; |