71e8eac4fd
The mdio driver interface is generally useful for devices that require MDIO without the full MII bus interface. This lifts the driver/interface out of etherswitch(4), and adds a mdio(4) man page. Submitted by: Landon Fuller <landon@landonf.org> Differential Revision: https://reviews.freebsd.org/D4606
11 lines
150 B
Makefile
11 lines
150 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/mdio
|
|
|
|
KMOD= mdio
|
|
SRCS= mdio.c
|
|
SRCS+= mdio_if.c mdio_if.h
|
|
SRCS+= device_if.h bus_if.h
|
|
|
|
.include <bsd.kmod.mk>
|