Deleted Added
full compact
bmtphy.c (119917) bmtphy.c (129844)
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 *

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

30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 * POSSIBILITY OF SUCH DAMAGE.
36 */
37
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 *

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

30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 * POSSIBILITY OF SUCH DAMAGE.
36 */
37
38#include <sys/cdefs.h>
39__FBSDID("$FreeBSD: head/sys/dev/mii/bmtphy.c 119917 2003-09-09 18:17:23Z wpaul $");
40
41/*
42 * Copyright (c) 1997 Manuel Bouyer. All rights reserved.
43 *
44 * Redistribution and use in source and binary forms, with or without
45 * modification, are permitted provided that the following conditions
46 * are met:
47 * 1. Redistributions of source code must retain the above copyright
48 * notice, this list of conditions and the following disclaimer.

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

65 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
66 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
67 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
68 *
69 * from: NetBSD: bmtphy.c,v 1.8 2002/07/03 06:25:50 simonb Exp
70 *
71 */
72
38/*
39 * Copyright (c) 1997 Manuel Bouyer. All rights reserved.
40 *
41 * Redistribution and use in source and binary forms, with or without
42 * modification, are permitted provided that the following conditions
43 * are met:
44 * 1. Redistributions of source code must retain the above copyright
45 * notice, this list of conditions and the following disclaimer.

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

62 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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 $");
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>

--- 221 unchanged lines hidden ---
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>

--- 221 unchanged lines hidden ---