Deleted Added
full compact
if_an.c (100770) if_an.c (104094)
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.c 100770 2002-07-27 21:28:40Z fenner $
32 * $FreeBSD: head/sys/dev/an/if_an.c 104094 2002-09-28 17:15:38Z phk $
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

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

127
128#include <machine/md_var.h>
129
130#include <dev/an/if_aironet_ieee.h>
131#include <dev/an/if_anreg.h>
132
133#if !defined(lint)
134static 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

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

127
128#include <machine/md_var.h>
129
130#include <dev/an/if_aironet_ieee.h>
131#include <dev/an/if_anreg.h>
132
133#if !defined(lint)
134static const char rcsid[] =
135 "$FreeBSD: head/sys/dev/an/if_an.c 100770 2002-07-27 21:28:40Z fenner $";
135 "$FreeBSD: head/sys/dev/an/if_an.c 104094 2002-09-28 17:15:38Z phk $";
136#endif
137
138/* These are global because we need them in sys/pci/if_an_p.c. */
139static void an_reset (struct an_softc *);
140static int an_ioctl (struct ifnet *, u_long, caddr_t);
141static void an_init (void *);
142static int an_init_tx_ring (struct an_softc *);
143static void an_start (struct ifnet *);

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

695}
696
697/*
698 * We abuse the stats updater to check the current NIC status. This
699 * is important because we don't want to allow transmissions until
700 * the NIC has synchronized to the current cell (either as the master
701 * in an ad-hoc group, or as a station connected to an access point).
702 */
136#endif
137
138/* These are global because we need them in sys/pci/if_an_p.c. */
139static void an_reset (struct an_softc *);
140static int an_ioctl (struct ifnet *, u_long, caddr_t);
141static void an_init (void *);
142static int an_init_tx_ring (struct an_softc *);
143static void an_start (struct ifnet *);

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

695}
696
697/*
698 * We abuse the stats updater to check the current NIC status. This
699 * is important because we don't want to allow transmissions until
700 * the NIC has synchronized to the current cell (either as the master
701 * in an ad-hoc group, or as a station connected to an access point).
702 */
703void
703static void
704an_stats_update(xsc)
705 void *xsc;
706{
707 struct an_softc *sc;
708 struct ifnet *ifp;
709
710 sc = xsc;
711 AN_LOCK(sc);

--- 2166 unchanged lines hidden ---
704an_stats_update(xsc)
705 void *xsc;
706{
707 struct an_softc *sc;
708 struct ifnet *ifp;
709
710 sc = xsc;
711 AN_LOCK(sc);

--- 2166 unchanged lines hidden ---