Deleted Added
full compact
if_re.c (271849) if_re.c (271864)
1/*-
2 * Copyright (c) 1997, 1998-2003
3 * Bill Paul <wpaul@windriver.com>. 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

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

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
33#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1997, 1998-2003
3 * Bill Paul <wpaul@windriver.com>. 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

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

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
33#include <sys/cdefs.h>
34__FBSDID("$FreeBSD: head/sys/dev/re/if_re.c 271849 2014-09-19 03:51:26Z glebius $");
34__FBSDID("$FreeBSD: head/sys/dev/re/if_re.c 271864 2014-09-19 10:32:20Z glebius $");
35
36/*
37 * RealTek 8139C+/8169/8169S/8110S/8168/8111/8101E PCI NIC driver
38 *
39 * Written by Bill Paul <wpaul@windriver.com>
40 * Senior Networking Software Engineer
41 * Wind River Systems
42 */

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

143#include <sys/rman.h>
144
145#include <dev/mii/mii.h>
146#include <dev/mii/miivar.h>
147
148#include <dev/pci/pcireg.h>
149#include <dev/pci/pcivar.h>
150
35
36/*
37 * RealTek 8139C+/8169/8169S/8110S/8168/8111/8101E PCI NIC driver
38 *
39 * Written by Bill Paul <wpaul@windriver.com>
40 * Senior Networking Software Engineer
41 * Wind River Systems
42 */

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

143#include <sys/rman.h>
144
145#include <dev/mii/mii.h>
146#include <dev/mii/miivar.h>
147
148#include <dev/pci/pcireg.h>
149#include <dev/pci/pcivar.h>
150
151#include <pci/if_rlreg.h>
151#include <dev/rl/if_rlreg.h>
152
153MODULE_DEPEND(re, pci, 1, 1, 1);
154MODULE_DEPEND(re, ether, 1, 1, 1);
155MODULE_DEPEND(re, miibus, 1, 1, 1);
156
157/* "device miibus" required. See GENERIC if you get errors here. */
158#include "miibus_if.h"
159

--- 3888 unchanged lines hidden ---
152
153MODULE_DEPEND(re, pci, 1, 1, 1);
154MODULE_DEPEND(re, ether, 1, 1, 1);
155MODULE_DEPEND(re, miibus, 1, 1, 1);
156
157/* "device miibus" required. See GENERIC if you get errors here. */
158#include "miibus_if.h"
159

--- 3888 unchanged lines hidden ---