Deleted Added
full compact
if_wi_pci.c (112360) if_wi_pci.c (113506)
1/*
2 * Copyright (c) 1997, 1998, 1999
3 * Bill Paul <wpaul@ctr.columbia.edu>. 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

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

24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30 * THE POSSIBILITY OF SUCH DAMAGE.
31 *
1/*
2 * Copyright (c) 1997, 1998, 1999
3 * Bill Paul <wpaul@ctr.columbia.edu>. 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

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

24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30 * THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 * $FreeBSD: head/sys/dev/wi/if_wi_pci.c 112360 2003-03-18 02:45:29Z imp $
32 * $FreeBSD: head/sys/dev/wi/if_wi_pci.c 113506 2003-04-15 06:37:30Z mdodd $
33 */
34
35/*
36 * Lucent WaveLAN/IEEE 802.11 PCMCIA driver for FreeBSD.
37 *
38 * Written by Bill Paul <wpaul@ctr.columbia.edu>
39 * Electrical Engineering Department
40 * Columbia University, New York City

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

102 {0x1385, 0x4100, WI_BUS_PCI_PLX, "Netgear MA301"},
103 {0x1638, 0x1100, WI_BUS_PCI_PLX, "PRISM2STA WaveLAN"},
104 {0x111a, 0x1023, WI_BUS_PCI_PLX, "Siemens SpeedStream"},
105 {0x10b5, 0x9050, WI_BUS_PCI_PLX, "SMC 2602W"},
106 {0x16ec, 0x3685, WI_BUS_PCI_PLX, "US Robotics 2415"},
107 {0, 0, 0, NULL}
108};
109
33 */
34
35/*
36 * Lucent WaveLAN/IEEE 802.11 PCMCIA driver for FreeBSD.
37 *
38 * Written by Bill Paul <wpaul@ctr.columbia.edu>
39 * Electrical Engineering Department
40 * Columbia University, New York City

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

102 {0x1385, 0x4100, WI_BUS_PCI_PLX, "Netgear MA301"},
103 {0x1638, 0x1100, WI_BUS_PCI_PLX, "PRISM2STA WaveLAN"},
104 {0x111a, 0x1023, WI_BUS_PCI_PLX, "Siemens SpeedStream"},
105 {0x10b5, 0x9050, WI_BUS_PCI_PLX, "SMC 2602W"},
106 {0x16ec, 0x3685, WI_BUS_PCI_PLX, "US Robotics 2415"},
107 {0, 0, 0, NULL}
108};
109
110DRIVER_MODULE(if_wi, pci, wi_pci_driver, wi_devclass, 0, 0);
111MODULE_DEPEND(if_wi, wlan, 1, 1, 1);
110DRIVER_MODULE(wi, pci, wi_pci_driver, wi_devclass, 0, 0);
111MODULE_DEPEND(wi, pci, 1, 1, 1);
112MODULE_DEPEND(wi, wlan, 1, 1, 1);
112
113static int
114wi_pci_probe(dev)
115 device_t dev;
116{
117 struct wi_softc *sc;
118 int i;
119

--- 153 unchanged lines hidden ---
113
114static int
115wi_pci_probe(dev)
116 device_t dev;
117{
118 struct wi_softc *sc;
119 int i;
120

--- 153 unchanged lines hidden ---