Deleted Added
full compact
bmtphy.c (129844) bmtphy.c (129876)
1/*
2 * Copyright (c) 1998, 1999, 2000, 2001 The NetBSD Foundation, Inc.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to The NetBSD Foundation
6 * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
7 * NASA Ames Research Center.
8 *

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

63 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
64 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
65 *
66 * from: NetBSD: bmtphy.c,v 1.8 2002/07/03 06:25:50 simonb Exp
67 *
68 */
69
70#include <sys/cdefs.h>
1/*
2 * Copyright (c) 1998, 1999, 2000, 2001 The NetBSD Foundation, Inc.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to The NetBSD Foundation
6 * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
7 * NASA Ames Research Center.
8 *

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

63 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
64 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
65 *
66 * from: NetBSD: bmtphy.c,v 1.8 2002/07/03 06:25:50 simonb Exp
67 *
68 */
69
70#include <sys/cdefs.h>
71__FBSDID("$FreeBSD: head/sys/dev/mii/bmtphy.c 129844 2004-05-29 18:09:10Z marius $");
71__FBSDID("$FreeBSD: head/sys/dev/mii/bmtphy.c 129876 2004-05-30 17:57:46Z phk $");
72
73/*
74 * Driver for the Broadcom BCM5201/BCM5202 "Mini-Theta" PHYs. This also
75 * drives the PHY on the 3Com 3c905C. The 3c905C's PHY is described in
76 * the 3c905C data sheet.
77 */
78
79#include <sys/param.h>
80#include <sys/systm.h>
81#include <sys/kernel.h>
72
73/*
74 * Driver for the Broadcom BCM5201/BCM5202 "Mini-Theta" PHYs. This also
75 * drives the PHY on the 3Com 3c905C. The 3c905C's PHY is described in
76 * the 3c905C data sheet.
77 */
78
79#include <sys/param.h>
80#include <sys/systm.h>
81#include <sys/kernel.h>
82#include <sys/module.h>
82#include <sys/socket.h>
83#include <sys/bus.h>
84
85#include <net/if.h>
86#include <net/if_media.h>
87
88#include <dev/mii/mii.h>
89#include <dev/mii/miivar.h>

--- 212 unchanged lines hidden ---
83#include <sys/socket.h>
84#include <sys/bus.h>
85
86#include <net/if.h>
87#include <net/if_media.h>
88
89#include <dev/mii/mii.h>
90#include <dev/mii/miivar.h>

--- 212 unchanged lines hidden ---