Deleted Added
full compact
if_xl.c (122689) if_xl.c (123019)
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

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

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
33#include <sys/cdefs.h>
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

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

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
33#include <sys/cdefs.h>
34__FBSDID("$FreeBSD: head/sys/pci/if_xl.c 122689 2003-11-14 19:00:32Z sam $");
34__FBSDID("$FreeBSD: head/sys/pci/if_xl.c 123019 2003-11-28 05:28:29Z imp $");
35
36/*
37 * 3Com 3c90x Etherlink XL PCI NIC driver
38 *
39 * Supports the 3Com "boomerang", "cyclone" and "hurricane" PCI
40 * bus-master chips (3c90x cards and embedded controllers) including
41 * the following:
42 *

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

287static driver_t xl_driver = {
288 "xl",
289 xl_methods,
290 sizeof(struct xl_softc)
291};
292
293static devclass_t xl_devclass;
294
35
36/*
37 * 3Com 3c90x Etherlink XL PCI NIC driver
38 *
39 * Supports the 3Com "boomerang", "cyclone" and "hurricane" PCI
40 * bus-master chips (3c90x cards and embedded controllers) including
41 * the following:
42 *

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

287static driver_t xl_driver = {
288 "xl",
289 xl_methods,
290 sizeof(struct xl_softc)
291};
292
293static devclass_t xl_devclass;
294
295DRIVER_MODULE(xl, cardbus, xl_driver, xl_devclass, 0, 0);
295DRIVER_MODULE(xl, pci, xl_driver, xl_devclass, 0, 0);
296DRIVER_MODULE(miibus, xl, miibus_driver, miibus_devclass, 0, 0);
297
298static void
299xl_dma_map_addr(arg, segs, nseg, error)
300 void *arg;
301 bus_dma_segment_t *segs;
302 int nseg, error;

--- 3045 unchanged lines hidden ---
296DRIVER_MODULE(xl, pci, xl_driver, xl_devclass, 0, 0);
297DRIVER_MODULE(miibus, xl, miibus_driver, miibus_devclass, 0, 0);
298
299static void
300xl_dma_map_addr(arg, segs, nseg, error)
301 void *arg;
302 bus_dma_segment_t *segs;
303 int nseg, error;

--- 3045 unchanged lines hidden ---