Deleted Added
full compact
sio.c (83366) sio.c (83546)
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 83366 2001-09-12 08:38:13Z julian $
33 * $FreeBSD: head/sys/dev/sio/sio.c 83546 2001-09-16 11:14:56Z murray $
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"

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

573struct pci_ids {
574 u_int32_t type;
575 const char *desc;
576 int rid;
577};
578
579static struct pci_ids pci_ids[] = {
580 { 0x100812b9, "3COM PCI FaxModem", 0x10 },
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"

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

573struct pci_ids {
574 u_int32_t type;
575 const char *desc;
576 int rid;
577};
578
579static struct pci_ids pci_ids[] = {
580 { 0x100812b9, "3COM PCI FaxModem", 0x10 },
581 { 0x048011c1, "Lucent kermit based PCI Modem", 0x14 },
582 { 0x0000151f, "SmartLink 5634PCV SurfRider", 0x10 },
581 { 0x2000131f, "CyberSerial (1-port) 16550", 0x10 },
583 { 0x01101407, "Koutech IOFLEX-2S PCI Dual Port Serial", 0x10 },
584 { 0x01111407, "Koutech IOFLEX-2S PCI Dual Port Serial", 0x10 },
582 { 0x01101407, "Koutech IOFLEX-2S PCI Dual Port Serial", 0x10 },
583 { 0x01111407, "Koutech IOFLEX-2S PCI Dual Port Serial", 0x10 },
584 { 0x048011c1, "Lucent kermit based PCI Modem", 0x14 },
585 { 0x95211415, "Oxford Semiconductor PCI Dual Port Serial", 0x10 },
586 { 0x0000151f, "SmartLink 5634PCV SurfRider", 0x10 },
585 /* { 0xXXXXXXXX, "Xircom Cardbus modem", 0x10 }, */
586 { 0x00000000, NULL, 0 }
587};
588
589static int
590sio_pci_attach(dev)
591 device_t dev;
592{

--- 2795 unchanged lines hidden ---
587 /* { 0xXXXXXXXX, "Xircom Cardbus modem", 0x10 }, */
588 { 0x00000000, NULL, 0 }
589};
590
591static int
592sio_pci_attach(dev)
593 device_t dev;
594{

--- 2795 unchanged lines hidden ---