Deleted Added
full compact
if_an_pccard.c (67365) if_an_pccard.c (74914)
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/an/if_an_pccard.c 67365 2000-10-20 07:58:15Z jhb $
32 * $FreeBSD: head/sys/dev/an/if_an_pccard.c 74914 2001-03-28 09:17:56Z jhb $
33 */
34
35/*
36 * Aironet 4500/4800 802.11 PCMCIA/ISA/PCI driver for FreeBSD.
37 *
38 * Written by Bill Paul <wpaul@ctr.columbia.edu>
39 * Electrical Engineering Department
40 * Columbia University, New York City

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

50#include <sys/systm.h>
51#include <sys/socket.h>
52#include <sys/kernel.h>
53
54#include <sys/module.h>
55#include <sys/bus.h>
56#include <machine/bus.h>
57#include <sys/rman.h>
33 */
34
35/*
36 * Aironet 4500/4800 802.11 PCMCIA/ISA/PCI driver for FreeBSD.
37 *
38 * Written by Bill Paul <wpaul@ctr.columbia.edu>
39 * Electrical Engineering Department
40 * Columbia University, New York City

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

50#include <sys/systm.h>
51#include <sys/socket.h>
52#include <sys/kernel.h>
53
54#include <sys/module.h>
55#include <sys/bus.h>
56#include <machine/bus.h>
57#include <sys/rman.h>
58#include <sys/lock.h>
58#include <sys/mutex.h>
59#include <machine/resource.h>
60
61#include <net/if.h>
62#include <net/if_arp.h>
63#include <net/ethernet.h>
64#include <net/if_dl.h>
65#include <net/if_types.h>
66
67#ifndef lint
68static const char rcsid[] =
59#include <sys/mutex.h>
60#include <machine/resource.h>
61
62#include <net/if.h>
63#include <net/if_arp.h>
64#include <net/ethernet.h>
65#include <net/if_dl.h>
66#include <net/if_types.h>
67
68#ifndef lint
69static const char rcsid[] =
69 "$FreeBSD: head/sys/dev/an/if_an_pccard.c 67365 2000-10-20 07:58:15Z jhb $";
70 "$FreeBSD: head/sys/dev/an/if_an_pccard.c 74914 2001-03-28 09:17:56Z jhb $";
70#endif
71
72#include <dev/an/if_aironet_ieee.h>
73#include <dev/an/if_anreg.h>
74
75/*
76 * Support for PCMCIA cards.
77 */

--- 85 unchanged lines hidden ---
71#endif
72
73#include <dev/an/if_aironet_ieee.h>
74#include <dev/an/if_anreg.h>
75
76/*
77 * Support for PCMCIA cards.
78 */

--- 85 unchanged lines hidden ---