Deleted Added
full compact
smcphy.c (213364) smcphy.c (213893)
1/*-
2 * Copyright (c) 2006 Benno Rice. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

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

18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24
25#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2006 Benno Rice. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

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

18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24
25#include <sys/cdefs.h>
26__FBSDID("$FreeBSD: head/sys/dev/mii/smcphy.c 213364 2010-10-02 18:53:12Z marius $");
26__FBSDID("$FreeBSD: head/sys/dev/mii/smcphy.c 213893 2010-10-15 14:52:11Z marius $");
27
28/*
29 * Driver for the internal PHY on the SMSC LAN91C111.
30 */
31
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/kernel.h>

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

100 struct mii_data *mii;
101
102 sc = device_get_softc(dev);
103 ma = device_get_ivars(dev);
104 sc->mii_dev = device_get_parent(dev);
105 mii = ma->mii_data;
106 LIST_INSERT_HEAD(&mii->mii_phys, sc, mii_list);
107
27
28/*
29 * Driver for the internal PHY on the SMSC LAN91C111.
30 */
31
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/kernel.h>

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

100 struct mii_data *mii;
101
102 sc = device_get_softc(dev);
103 ma = device_get_ivars(dev);
104 sc->mii_dev = device_get_parent(dev);
105 mii = ma->mii_data;
106 LIST_INSERT_HEAD(&mii->mii_phys, sc, mii_list);
107
108 sc->mii_flags = miibus_get_flags(dev);
108 sc->mii_inst = mii->mii_instance++;
109 sc->mii_phy = ma->mii_phyno;
110 sc->mii_service = smcphy_service;
111 sc->mii_pdata = mii;
112
113 sc->mii_flags |= MIIF_NOISOLATE;
114
115 if (smcphy_reset(sc) != 0) {

--- 126 unchanged lines hidden ---
109 sc->mii_inst = mii->mii_instance++;
110 sc->mii_phy = ma->mii_phyno;
111 sc->mii_service = smcphy_service;
112 sc->mii_pdata = mii;
113
114 sc->mii_flags |= MIIF_NOISOLATE;
115
116 if (smcphy_reset(sc) != 0) {

--- 126 unchanged lines hidden ---