Deleted Added
sdiff udiff text old ( 50461 ) new ( 50480 )
full compact
1/* $NetBSD: tlphy.c,v 1.18 1999/05/14 11:40:28 drochner Exp $ */
2
3/*-
4 * Copyright (c) 1998, 1999 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,

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

89#include <dev/mii/miidevs.h>
90
91#include <dev/mii/tlphyreg.h>
92
93#include "miibus_if.h"
94
95#if !defined(lint)
96static const char rcsid[] =
97 "$Id$";
98#endif
99
100struct tlphy_softc {
101 struct mii_softc sc_mii; /* generic PHY */
102 int sc_need_acomp;
103};
104
105static int tlphy_probe __P((device_t));

--- 352 unchanged lines hidden ---