freebsd-dev/sys/modules/mii/Makefile
Warner Losh 5fb1afd722 New PHY driver for the internal PHY found in the AX88790. There's a
number of quirks for this device, and this implements just the basics.
The 2.5s powerdown recommended in the datasheet will be next...
2009-03-30 16:01:09 +00:00

22 lines
582 B
Makefile

# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/mii
KMOD= miibus
SRCS= acphy.c amphy.c atphy.c axphy.c bmtphy.c brgphy.c bus_if.h
SRCS+= ciphy.c device_if.h
SRCS+= e1000phy.c exphy.c gentbi.c icsphy.c inphy.c ip1000phy.c jmphy.c
SRCS+= lxtphy.c miibus_if.c miibus_if.h mii.c miidevs.h mii_physubr.c
SRCS+= mlphy.c nsgphy.c nsphy.c nsphyter.c pci_if.h pnaphy.c qsphy.c
SRCS+= rgephy.c rlphy.c ruephy.c tdkphy.c tlphy.c truephy.c ukphy.c
SRCS+= ukphy_subr.c
SRCS+= xmphy.c
EXPORT_SYMS= mii_mediachg \
mii_phy_probe \
mii_phy_reset \
mii_pollstat \
mii_tick
.include <bsd.kmod.mk>