Author: glebius
Date: Tue Jan 13 06:22:24 2015
New Revision: 277104
URL: https://svnweb.freebsd.org/changeset/base/277104

Log:
  Remove unused fields.

Modified:
  head/sys/dev/mii/miivar.h

Modified: head/sys/dev/mii/miivar.h
==============================================================================
--- head/sys/dev/mii/miivar.h   Tue Jan 13 05:32:51 2015        (r277103)
+++ head/sys/dev/mii/miivar.h   Tue Jan 13 06:22:24 2015        (r277104)
@@ -45,13 +45,6 @@
 struct mii_softc;
 
 /*
- * Callbacks from MII layer into network interface device driver.
- */
-typedef        int (*mii_readreg_t)(struct device *, int, int);
-typedef        void (*mii_writereg_t)(struct device *, int, int, int);
-typedef        void (*mii_statchg_t)(struct device *);
-
-/*
  * A network interface driver has one of these structures in its softc.
  * It is the interface from the network interface driver to the MII
  * layer.
@@ -73,13 +66,6 @@ struct mii_data {
         */
        u_int mii_media_status;
        u_int mii_media_active;
-
-       /*
-        * Calls from MII layer into network interface driver.
-        */
-       mii_readreg_t mii_readreg;
-       mii_writereg_t mii_writereg;
-       mii_statchg_t mii_statchg;
 };
 typedef struct mii_data mii_data_t;
 
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"

Reply via email to