Deleted Added
full compact
if_tx.c (106937) if_tx.c (109514)
1/*-
2 * Copyright (c) 1997 Semen Ustimenko (semenu@FreeBSD.org)
3 * 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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 1997 Semen Ustimenko (semenu@FreeBSD.org)
3 * 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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/dev/tx/if_tx.c 106937 2002-11-14 23:54:55Z sam $
26 * $FreeBSD: head/sys/dev/tx/if_tx.c 109514 2003-01-19 02:59:34Z obrien $
27 */
28
29/*
30 * EtherPower II 10/100 Fast Ethernet (SMC 9432 serie)
31 *
32 * These cards are based on SMC83c17x (EPIC) chip and one of the various
33 * PHYs (QS6612, AC101 and LXT970 were seen). The media support depends on
34 * card model. All cards support 10baseT/UTP and 100baseTX half- and full-

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

67#include <sys/bus.h>
68#include <sys/rman.h>
69
70#include <pci/pcireg.h>
71#include <pci/pcivar.h>
72
73#include <dev/mii/mii.h>
74#include <dev/mii/miivar.h>
27 */
28
29/*
30 * EtherPower II 10/100 Fast Ethernet (SMC 9432 serie)
31 *
32 * These cards are based on SMC83c17x (EPIC) chip and one of the various
33 * PHYs (QS6612, AC101 and LXT970 were seen). The media support depends on
34 * card model. All cards support 10baseT/UTP and 100baseTX half- and full-

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

67#include <sys/bus.h>
68#include <sys/rman.h>
69
70#include <pci/pcireg.h>
71#include <pci/pcivar.h>
72
73#include <dev/mii/mii.h>
74#include <dev/mii/miivar.h>
75#include <dev/mii/miidevs.h>
75#include "miidevs.h"
76
77#include <dev/mii/lxtphyreg.h>
78
79#include "miibus_if.h"
80
81#include <dev/tx/if_txreg.h>
82#include <dev/tx/if_txvar.h>
83

--- 1668 unchanged lines hidden ---
76
77#include <dev/mii/lxtphyreg.h>
78
79#include "miibus_if.h"
80
81#include <dev/tx/if_txreg.h>
82#include <dev/tx/if_txvar.h>
83

--- 1668 unchanged lines hidden ---