Deleted Added
full compact
sio.c (60674) sio.c (60696)
1/*-
2 * Copyright (c) 1991 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 16 unchanged lines hidden (view full) ---

25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
1/*-
2 * Copyright (c) 1991 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 16 unchanged lines hidden (view full) ---

25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * $FreeBSD: head/sys/dev/sio/sio.c 60674 2000-05-18 02:06:24Z tanimura $
33 * $FreeBSD: head/sys/dev/sio/sio.c 60696 2000-05-19 03:41:22Z tanimura $
34 * from: @(#)com.c 7.5 (Berkeley) 5/16/91
35 * from: i386/isa sio.c,v 1.234
36 */
37
38#include "opt_comconsole.h"
39#include "opt_compat.h"
40#include "opt_ddb.h"
41#include "opt_sio.h"

--- 609 unchanged lines hidden (view full) ---

651
652static struct isa_pnp_id sio_ids[] = {
653 {0x0005d041, "Standard PC COM port"}, /* PNP0500 */
654 {0x0105d041, "16550A-compatible COM port"}, /* PNP0501 */
655 {0x0205d041, "Multiport serial device (non-intelligent 16550)"}, /* PNP0502 */
656 {0x1005d041, "Generic IRDA-compatible device"}, /* PNP0510 */
657 {0x1105d041, "Generic IRDA-compatible device"}, /* PNP0511 */
658 /* Devices that do not have a compatid */
34 * from: @(#)com.c 7.5 (Berkeley) 5/16/91
35 * from: i386/isa sio.c,v 1.234
36 */
37
38#include "opt_comconsole.h"
39#include "opt_compat.h"
40#include "opt_ddb.h"
41#include "opt_sio.h"

--- 609 unchanged lines hidden (view full) ---

651
652static struct isa_pnp_id sio_ids[] = {
653 {0x0005d041, "Standard PC COM port"}, /* PNP0500 */
654 {0x0105d041, "16550A-compatible COM port"}, /* PNP0501 */
655 {0x0205d041, "Multiport serial device (non-intelligent 16550)"}, /* PNP0502 */
656 {0x1005d041, "Generic IRDA-compatible device"}, /* PNP0510 */
657 {0x1105d041, "Generic IRDA-compatible device"}, /* PNP0511 */
658 /* Devices that do not have a compatid */
659 {0x12206804, NULL}, /* ACH2012 - 5634BTS 56K Video Ready Modem */
659 {0x7602a904, NULL}, /* AEI0276 - 56K v.90 Fax Modem (LKT) */
660 {0x00007905, NULL}, /* AKY0000 - 56K Plug&Play Modem */
661 {0x01405407, NULL}, /* AZT4001 - AZT3000 PnP SOUND DEVICE, MODEM */
662 {0x56039008, NULL}, /* BDP0356 - Best Data 56x2 */
663 {0x36339008, NULL}, /* BDP3336 - Best Data Prods. 336F */
664 {0x0014490a, NULL}, /* BRI1400 - Boca 33.6 PnP */
665 {0x0015490a, NULL}, /* BRI1500 - Internal Fax Data */
666 {0x0034490a, NULL}, /* BRI3400 - Internal ACF Modem */

--- 2594 unchanged lines hidden ---
660 {0x7602a904, NULL}, /* AEI0276 - 56K v.90 Fax Modem (LKT) */
661 {0x00007905, NULL}, /* AKY0000 - 56K Plug&Play Modem */
662 {0x01405407, NULL}, /* AZT4001 - AZT3000 PnP SOUND DEVICE, MODEM */
663 {0x56039008, NULL}, /* BDP0356 - Best Data 56x2 */
664 {0x36339008, NULL}, /* BDP3336 - Best Data Prods. 336F */
665 {0x0014490a, NULL}, /* BRI1400 - Boca 33.6 PnP */
666 {0x0015490a, NULL}, /* BRI1500 - Internal Fax Data */
667 {0x0034490a, NULL}, /* BRI3400 - Internal ACF Modem */

--- 2594 unchanged lines hidden ---