aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/mii/miivar.h
diff options
context:
space:
mode:
authorJake Burkholder <jake@FreeBSD.org>2000-05-26 02:09:24 +0000
committerJake Burkholder <jake@FreeBSD.org>2000-05-26 02:09:24 +0000
commite39756439c7255bc16ba14b7b991cb01ba1c93bd (patch)
tree112dfed9c5841280f457e0dca97e8de49e04ecd9 /sys/dev/mii/miivar.h
parent13c6acf19de074f64f9ff031a2e5e660c7957fd2 (diff)
Back out the previous change to the queue(3) interface.
It was not discussed and should probably not happen. Requested by: msmith and others
Notes
Notes: svn path=/head/; revision=60938
Diffstat (limited to 'sys/dev/mii/miivar.h')
-rw-r--r--sys/dev/mii/miivar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/mii/miivar.h b/sys/dev/mii/miivar.h
index cd47d2d592c0..4a68b9c7cf25 100644
--- a/sys/dev/mii/miivar.h
+++ b/sys/dev/mii/miivar.h
@@ -74,7 +74,7 @@ struct mii_data {
* PHYs is required so they can all be notified when a media
* request is made.
*/
- LIST_HEAD(mii_listhead, struct mii_softc) mii_phys;
+ LIST_HEAD(mii_listhead, mii_softc) mii_phys;
int mii_instance;
/*
@@ -113,7 +113,7 @@ typedef int (*mii_downcall_t) __P((struct mii_softc *, struct mii_data *, int));
struct mii_softc {
device_t mii_dev; /* generic device glue */
- LIST_ENTRY(struct mii_softc) mii_list; /* entry on parent's PHY list */
+ LIST_ENTRY(mii_softc) mii_list; /* entry on parent's PHY list */
int mii_phy; /* our MII address */
int mii_inst; /* instance for ifmedia */