mii.c (127d7b2d2d3599285f428aa9708e8d5ed86627a3) mii.c (50aa106108cc9a610e4bdee7c7fe614a8c425c18)
1/* $NetBSD: mii.c,v 1.12 1999/08/03 19:41:49 drochner Exp $ */
2
3/*-
4 * Copyright (c) 1998 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,

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

41__FBSDID("$FreeBSD$");
42
43/*
44 * MII bus layer, glues MII-capable network interface drivers to sharable
45 * PHY drivers. This exports an interface compatible with BSD/OS 3.0's,
46 * plus some NetBSD extensions.
47 */
48
1/* $NetBSD: mii.c,v 1.12 1999/08/03 19:41:49 drochner Exp $ */
2
3/*-
4 * Copyright (c) 1998 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,

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

41__FBSDID("$FreeBSD$");
42
43/*
44 * MII bus layer, glues MII-capable network interface drivers to sharable
45 * PHY drivers. This exports an interface compatible with BSD/OS 3.0's,
46 * plus some NetBSD extensions.
47 */
48
49#include <sys/cdefs.h>
50__FBSDID("$FreeBSD$");
51
52#include <sys/param.h>
53#include <sys/systm.h>
54#include <sys/socket.h>
55#include <sys/malloc.h>
56#include <sys/module.h>
57#include <sys/bus.h>
58
59#include <net/if.h>

--- 341 unchanged lines hidden ---
49#include <sys/param.h>
50#include <sys/systm.h>
51#include <sys/socket.h>
52#include <sys/malloc.h>
53#include <sys/module.h>
54#include <sys/bus.h>
55
56#include <net/if.h>

--- 341 unchanged lines hidden ---