mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-19 10:53:58 +00:00
25 lines
281 B
Mathematica
25 lines
281 B
Mathematica
|
# $FreeBSD$
|
||
|
|
||
|
#include <sys/bus.h>
|
||
|
|
||
|
INTERFACE mdio;
|
||
|
|
||
|
#
|
||
|
# Read register from device on MDIO bus
|
||
|
#
|
||
|
METHOD int readreg {
|
||
|
device_t dev;
|
||
|
int phy;
|
||
|
int reg;
|
||
|
};
|
||
|
|
||
|
#
|
||
|
# Write register to device on MDIO bus
|
||
|
#
|
||
|
METHOD int writereg {
|
||
|
device_t dev;
|
||
|
int phy;
|
||
|
int reg;
|
||
|
int val;
|
||
|
};
|