Deleted Added
full compact
if_alc.c (225736) if_alc.c (229057)
1/*-
2 * Copyright (c) 2009, Pyun YongHyeon <yongari@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 */
27
28/* Driver for Atheros AR813x/AR815x PCIe Ethernet. */
29
30#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2009, Pyun YongHyeon <yongari@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 */
27
28/* Driver for Atheros AR813x/AR815x PCIe Ethernet. */
29
30#include <sys/cdefs.h>
31__FBSDID("$FreeBSD: stable/9/sys/dev/alc/if_alc.c 225088 2011-08-22 20:33:05Z yongari $");
31__FBSDID("$FreeBSD: stable/9/sys/dev/alc/if_alc.c 229057 2011-12-31 01:07:01Z yongari $");
32
33#include <sys/param.h>
34#include <sys/systm.h>
35#include <sys/bus.h>
36#include <sys/endian.h>
37#include <sys/kernel.h>
38#include <sys/lock.h>
39#include <sys/malloc.h>

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

344 ALC_LOCK(sc);
345 if ((ifp->if_flags & IFF_UP) == 0) {
346 ALC_UNLOCK(sc);
347 return;
348 }
349 mii = device_get_softc(sc->alc_miibus);
350
351 mii_pollstat(mii);
32
33#include <sys/param.h>
34#include <sys/systm.h>
35#include <sys/bus.h>
36#include <sys/endian.h>
37#include <sys/kernel.h>
38#include <sys/lock.h>
39#include <sys/malloc.h>

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

344 ALC_LOCK(sc);
345 if ((ifp->if_flags & IFF_UP) == 0) {
346 ALC_UNLOCK(sc);
347 return;
348 }
349 mii = device_get_softc(sc->alc_miibus);
350
351 mii_pollstat(mii);
352 ALC_UNLOCK(sc);
353 ifmr->ifm_status = mii->mii_media_status;
354 ifmr->ifm_active = mii->mii_media_active;
352 ifmr->ifm_status = mii->mii_media_status;
353 ifmr->ifm_active = mii->mii_media_active;
354 ALC_UNLOCK(sc);
355}
356
357static int
358alc_mediachange(struct ifnet *ifp)
359{
360 struct alc_softc *sc;
361 struct mii_data *mii;
362 struct mii_softc *miisc;

--- 3417 unchanged lines hidden ---
355}
356
357static int
358alc_mediachange(struct ifnet *ifp)
359{
360 struct alc_softc *sc;
361 struct mii_data *mii;
362 struct mii_softc *miisc;

--- 3417 unchanged lines hidden ---