aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/vge
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2022-04-05 19:40:01 +0000
committerWarner Losh <imp@FreeBSD.org>2022-04-05 19:52:55 +0000
commitb111430e54537a66080df115c3a2950a2922da5a (patch)
tree14cee4873eb8e9ae1b7dac15525150d7d1894c25 /sys/modules/vge
parentff8d9d9c56185d38f507ffe2659cfd13633b9a12 (diff)
downloadsrc-b111430e54537a66080df115c3a2950a2922da5a.tar.gz
src-b111430e54537a66080df115c3a2950a2922da5a.zip
mii: Add opt_platform.h to all miibus drivers
miivar.h includes opt_platform.h. Make sure all the drivers that use the miibus_if.h interface file have opt_platform.h as well. While some of these may not, strictly speaking, need it, it's easier to include it universally for miibus. Sponsored by: Netflix
Diffstat (limited to 'sys/modules/vge')
-rw-r--r--sys/modules/vge/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/vge/Makefile b/sys/modules/vge/Makefile
index 2866aaca9ec5..e2c39ac3862f 100644
--- a/sys/modules/vge/Makefile
+++ b/sys/modules/vge/Makefile
@@ -3,6 +3,6 @@
.PATH: ${SRCTOP}/sys/dev/vge
KMOD= if_vge
-SRCS= if_vge.c miibus_if.h device_if.h bus_if.h pci_if.h
+SRCS= if_vge.c miibus_if.h device_if.h bus_if.h pci_if.h opt_platform.h
.include <bsd.kmod.mk>