Remove unused fields.

This commit is contained in:
Gleb Smirnoff 2015-01-13 06:22:24 +00:00
parent 25baf019f1
commit 22064c8f39
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=277104

View File

@ -44,13 +44,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
@ -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;