Deleted Added
full compact
if_an_pccard.c (106937) if_an_pccard.c (108401)
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 106937 2002-11-14 23:54:55Z sam $
32 * $FreeBSD: head/sys/dev/an/if_an_pccard.c 108401 2002-12-29 19:22:07Z ambrisko $
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

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

67#include <net/if_media.h>
68
69#include <dev/pccard/pccardvar.h>
70#include <dev/pccard/pccarddevs.h>
71#include "card_if.h"
72
73#ifndef lint
74static const char rcsid[] =
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

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

67#include <net/if_media.h>
68
69#include <dev/pccard/pccardvar.h>
70#include <dev/pccard/pccarddevs.h>
71#include "card_if.h"
72
73#ifndef lint
74static const char rcsid[] =
75 "$FreeBSD: head/sys/dev/an/if_an_pccard.c 106937 2002-11-14 23:54:55Z sam $";
75 "$FreeBSD: head/sys/dev/an/if_an_pccard.c 108401 2002-12-29 19:22:07Z ambrisko $";
76#endif
77
78#include <dev/an/if_aironet_ieee.h>
79#include <dev/an/if_anreg.h>
80
81/*
82 * Support for PCMCIA cards.
83 */

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

188
189 sc->an_bhandle = rman_get_bushandle(sc->port_res);
190 sc->an_btag = rman_get_bustag(sc->port_res);
191 sc->an_dev = dev;
192
193 error = an_attach(sc, device_get_unit(dev), flags);
194 return (error);
195}
76#endif
77
78#include <dev/an/if_aironet_ieee.h>
79#include <dev/an/if_anreg.h>
80
81/*
82 * Support for PCMCIA cards.
83 */

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

188
189 sc->an_bhandle = rman_get_bushandle(sc->port_res);
190 sc->an_btag = rman_get_bustag(sc->port_res);
191 sc->an_dev = dev;
192
193 error = an_attach(sc, device_get_unit(dev), flags);
194 return (error);
195}
196