freebsd-dev/sys/dev/mii/miibus_if.m
Bill Paul a30ecd6149 Crap, I knew I was going to forget something: add missing miibus method
description file which slipped through the cracks.

Pointed out by: Doug <Doug@gorean.org>
1999-08-22 00:56:39 +00:00

37 lines
424 B
Mathematica

# $Id$
INTERFACE miibus;
#
# Read register from device on MII bus
#
METHOD int readreg {
device_t dev;
int phy;
int reg;
};
#
# Write register to device on MII bus
#
METHOD int writereg {
device_t dev;
int phy;
int reg;
int val;
};
#
# Notify bus about PHY status change.
#
METHOD void statchg {
device_t dev;
};
#
# Notify bus that media has been set.
#
METHOD void mediainit {
device_t dev;
};