Deleted Added
full compact
if_fxpreg.h (113151) if_fxpreg.h (113154)
1/*
2 * Copyright (c) 1995, David Greenman
3 * Copyright (c) 2001 Jonathan Lemon <jlemon@freebsd.org>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
1/*
2 * Copyright (c) 1995, David Greenman
3 * Copyright (c) 2001 Jonathan Lemon <jlemon@freebsd.org>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
28 * $FreeBSD: head/sys/dev/fxp/if_fxpreg.h 113151 2003-04-05 23:46:58Z mux $
28 * $FreeBSD: head/sys/dev/fxp/if_fxpreg.h 113154 2003-04-06 01:11:38Z mux $
29 */
30
31#define FXP_VENDORID_INTEL 0x8086
32
33#define FXP_PCI_MMBA 0x10
34#define FXP_PCI_IOBA 0x14
35
36/*

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

341
342/*
343 * RFA definitions
344 */
345
346struct fxp_rfa {
347 u_int16_t rfa_status;
348 u_int16_t rfa_control;
29 */
30
31#define FXP_VENDORID_INTEL 0x8086
32
33#define FXP_PCI_MMBA 0x10
34#define FXP_PCI_IOBA 0x14
35
36/*

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

341
342/*
343 * RFA definitions
344 */
345
346struct fxp_rfa {
347 u_int16_t rfa_status;
348 u_int16_t rfa_control;
349 u_int8_t link_addr[4];
350 u_int8_t rbd_addr[4];
349 u_int32_t link_addr;
350 u_int32_t rbd_addr;
351 u_int16_t actual_size;
352 u_int16_t size;
353
354 /*
355 * The following fields are only available when using
356 * extended receive mode on an 82550/82551 chipset.
357 */
358 u_int16_t rfax_vlan_id;

--- 112 unchanged lines hidden ---
351 u_int16_t actual_size;
352 u_int16_t size;
353
354 /*
355 * The following fields are only available when using
356 * extended receive mode on an 82550/82551 chipset.
357 */
358 u_int16_t rfax_vlan_id;

--- 112 unchanged lines hidden ---