Deleted Added
full compact
if_anreg.h (198987) if_anreg.h (198995)
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_anreg.h 198987 2009-11-06 14:52:37Z jhb $
32 * $FreeBSD: head/sys/dev/an/if_anreg.h 198995 2009-11-06 18:28:13Z jhb $
33 */
34
35#define AN_TIMEOUT 65536
36
37/* Default network name: <empty string> */
38#define AN_DEFAULT_NETNAME ""
39
40/* The nodename must be less than 16 bytes */

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

506int an_alloc_port (device_t, int, int);
507int an_alloc_memory (device_t, int, int);
508int an_alloc_aux_memory (device_t, int, int);
509int an_alloc_irq (device_t, int, int);
510int an_pci_probe (device_t);
511int an_probe (device_t);
512int an_shutdown (device_t);
513void an_resume (device_t);
33 */
34
35#define AN_TIMEOUT 65536
36
37/* Default network name: <empty string> */
38#define AN_DEFAULT_NETNAME ""
39
40/* The nodename must be less than 16 bytes */

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

506int an_alloc_port (device_t, int, int);
507int an_alloc_memory (device_t, int, int);
508int an_alloc_aux_memory (device_t, int, int);
509int an_alloc_irq (device_t, int, int);
510int an_pci_probe (device_t);
511int an_probe (device_t);
512int an_shutdown (device_t);
513void an_resume (device_t);
514int an_attach (struct an_softc *, int, int);
514int an_attach (struct an_softc *, int);
515int an_detach (device_t);
516void an_stop (struct an_softc *);
517
518driver_intr_t an_intr;
519
520#define AN_802_3_OFFSET 0x2E
521#define AN_802_11_OFFSET 0x44
522#define AN_802_11_OFFSET_RAW 0x3C

--- 32 unchanged lines hidden ---
515int an_detach (device_t);
516void an_stop (struct an_softc *);
517
518driver_intr_t an_intr;
519
520#define AN_802_3_OFFSET 0x2E
521#define AN_802_11_OFFSET 0x44
522#define AN_802_11_OFFSET_RAW 0x3C

--- 32 unchanged lines hidden ---