freebsd-dev/sys/modules/mdio/Makefile
Adrian Chadd 71e8eac4fd [mdio] migrate mdiobus out of etherswitch and into a top-level device of its own.
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
2015-12-26 02:31:39 +00:00

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>