diff options
author | Bjoern A. Zeeb <bz@FreeBSD.org> | 2022-10-24 20:54:20 +0000 |
---|---|---|
committer | Bjoern A. Zeeb <bz@FreeBSD.org> | 2022-10-24 21:24:32 +0000 |
commit | 16295b0a5a577aa70f47d3b3314277e631caee63 (patch) | |
tree | 2ef527a8d5c8d4712e3afcf05629ad1dccd40190 /sys/modules/dpaa2 | |
parent | 31bc602ff811a20c8794f48061cccde9277c6a53 (diff) | |
download | src-16295b0a5a577aa70f47d3b3314277e631caee63.tar.gz src-16295b0a5a577aa70f47d3b3314277e631caee63.zip |
dpaa2: cleanup some include files
2782ed8f6cd3d7f59219a783bc7fa7bbfb1fe26f fixed the standalone module
build. REmove the now duplicate includes for opt_acpi.h and
opt_platform.h. Als remove the if_mdio.h again in both the Makefile
and the implementation file as it is not (currently) used.
X-MFC with: ba7319e9091b4f6ef15a9c4be3d3d076f3047f72
MFC after: 70 days
Diffstat (limited to 'sys/modules/dpaa2')
-rw-r--r-- | sys/modules/dpaa2/Makefile | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/modules/dpaa2/Makefile b/sys/modules/dpaa2/Makefile index fa280452bcfa..eeb9e7f340bf 100644 --- a/sys/modules/dpaa2/Makefile +++ b/sys/modules/dpaa2/Makefile @@ -19,13 +19,11 @@ SRCS+= memac_mdio_common.c memac_mdio_if.c memac_mdio_if.h SRCS+= bus_if.h device_if.h miibus_if.h SRCS+= pcib_if.h pci_if.h -SRCS+= mdio_if.h SRCS+= opt_acpi.h opt_platform.h .if !empty(OPT_ACPI) SRCS+= dpaa2_mc_acpi.c \ memac_mdio_acpi.c \ - opt_acpi.h \ acpi_if.h \ acpi_bus_if.h .endif @@ -33,7 +31,6 @@ SRCS+= dpaa2_mc_acpi.c \ .if !empty(OPT_FDT) SRCS+= dpaa2_mc_fdt.c \ memac_mdio_fdt.c \ - opt_platform.h \ ofw_bus_if.h .endif |