517ea731d4
As of today, using 'kldload miibus' is not equivalent to using 'device miibus' in a kernel config. Newly introduced PHY drivers (DP83822, DP83867, VSCPHY) and source files/PHY driver for FDT-enabled kernels are missing. Without including them, kernel modules using any function from dev/mii/mii_fdt.c refuse to load. Additionally, miivar.h directly includes opt_platform.h. Add the missing sources to the module build, with the FDT-only files gated behind an OPT_FDT check. Maintain the alphabetical listing of SRCS, but move the required header files to a separate line to improve readability. Reviewed by: mhorne, mindal@semihalf.com MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D34256
25 lines
643 B
Makefile
25 lines
643 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/mii
|
|
|
|
KMOD= miibus
|
|
SRCS= acphy.c amphy.c atphy.c axphy.c bmtphy.c brgphy.c
|
|
SRCS+= ciphy.c dp83822phy.c dp83867phy.c
|
|
SRCS+= e1000phy.c gentbi.c icsphy.c ip1000phy.c jmphy.c lxtphy.c
|
|
SRCS+= miibus_if.c mii.c mii_bitbang.c mii_physubr.c
|
|
SRCS+= nsgphy.c nsphy.c nsphyter.c pnaphy.c qsphy.c
|
|
SRCS+= rdcphy.c rgephy.c rlphy.c smcphy.c
|
|
SRCS+= smscphy.c tdkphy.c truephy.c
|
|
SRCS+= ukphy.c ukphy_subr.c
|
|
SRCS+= vscphy.c xmphy.c
|
|
SRCS+= bus_if.h device_if.h miibus_if.h miidevs.h opt_platform.h pci_if.h
|
|
|
|
.if !empty(OPT_FDT)
|
|
SRCS+= micphy.c mii_fdt.c
|
|
SRCS+= ofw_bus_if.h
|
|
.endif
|
|
|
|
EXPORT_SYMS= YES
|
|
|
|
.include <bsd.kmod.mk>
|