Deleted Added
full compact
pnaphy.c (119418) pnaphy.c (129844)
1/*
2 * Copyright (c) 2000 Berkeley Software Design, Inc.
3 * Copyright (c) 1997, 1998, 1999, 2000
4 * Bill Paul <wpaul@osd.bsdi.com>. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 * THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
34#include <sys/cdefs.h>
1/*
2 * Copyright (c) 2000 Berkeley Software Design, Inc.
3 * Copyright (c) 1997, 1998, 1999, 2000
4 * Bill Paul <wpaul@osd.bsdi.com>. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 * THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
34#include <sys/cdefs.h>
35__FBSDID("$FreeBSD: head/sys/dev/mii/pnaphy.c 119418 2003-08-24 17:55:58Z obrien $");
35__FBSDID("$FreeBSD: head/sys/dev/mii/pnaphy.c 129844 2004-05-29 18:09:10Z marius $");
36
37/*
38 * driver for homePNA PHYs
39 * This is really just a stub that allows us to identify homePNA-based
40 * transceicers and display the link status. MII-based homePNA PHYs
41 * only support one media type and no autonegotiation. If we were
42 * really clever, we could tweak some of the vendor-specific registers
43 * to optimize the link.
44 */
45
36
37/*
38 * driver for homePNA PHYs
39 * This is really just a stub that allows us to identify homePNA-based
40 * transceicers and display the link status. MII-based homePNA PHYs
41 * only support one media type and no autonegotiation. If we were
42 * really clever, we could tweak some of the vendor-specific registers
43 * to optimize the link.
44 */
45
46#include <sys/cdefs.h>
47__FBSDID("$FreeBSD: head/sys/dev/mii/pnaphy.c 119418 2003-08-24 17:55:58Z obrien $");
48
49#include <sys/param.h>
50#include <sys/systm.h>
51#include <sys/kernel.h>
52#include <sys/socket.h>
53#include <sys/errno.h>
54#include <sys/module.h>
55#include <sys/bus.h>
56

--- 174 unchanged lines hidden ---
46#include <sys/param.h>
47#include <sys/systm.h>
48#include <sys/kernel.h>
49#include <sys/socket.h>
50#include <sys/errno.h>
51#include <sys/module.h>
52#include <sys/bus.h>
53

--- 174 unchanged lines hidden ---