Deleted Added
full compact
if_hme_pci.c (117116) if_hme_pci.c (119280)
1/*
2 * Copyright (c) 2000 Matthew R. Green
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

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

22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * 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 * from: NetBSD: if_hme_pci.c,v 1.4 2001/08/27 22:18:49 augustss Exp
29 *
1/*
2 * Copyright (c) 2000 Matthew R. Green
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

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

22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * 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 * from: NetBSD: if_hme_pci.c,v 1.4 2001/08/27 22:18:49 augustss Exp
29 *
30 * $FreeBSD: head/sys/dev/hme/if_hme_pci.c 117116 2003-07-01 14:11:04Z tmm $
30 * $FreeBSD: head/sys/dev/hme/if_hme_pci.c 119280 2003-08-22 06:00:27Z imp $
31 */
32
33/*
34 * PCI front-end device driver for the HME ethernet device.
35 */
36
37#include <sys/param.h>
38#include <sys/systm.h>

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

51#include <net/if.h>
52#include <net/if_arp.h>
53#include <net/if_dl.h>
54#include <net/if_media.h>
55
56#include <mii/mii.h>
57#include <mii/miivar.h>
58
31 */
32
33/*
34 * PCI front-end device driver for the HME ethernet device.
35 */
36
37#include <sys/param.h>
38#include <sys/systm.h>

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

51#include <net/if.h>
52#include <net/if_arp.h>
53#include <net/if_dl.h>
54#include <net/if_media.h>
55
56#include <mii/mii.h>
57#include <mii/miivar.h>
58
59#include
60#include
59#include <dev/pci/pcivar.h>
60#include <dev/pci/pcireg.h>
61
62#include <hme/if_hmereg.h>
63#include <hme/if_hmevar.h>
64
65#include "miibus_if.h"
66
67struct hme_pci_softc {
68 struct hme_softc hsc_hme; /* HME device */

--- 172 unchanged lines hidden ---
61
62#include <hme/if_hmereg.h>
63#include <hme/if_hmevar.h>
64
65#include "miibus_if.h"
66
67struct hme_pci_softc {
68 struct hme_softc hsc_hme; /* HME device */

--- 172 unchanged lines hidden ---