aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuel Vadot <manu@FreeBSD.org>2021-06-21 19:55:03 +0000
committerEmmanuel Vadot <manu@FreeBSD.org>2021-06-21 19:55:03 +0000
commitbf7b542e0216e6bd3bcd5ff46e376643d41f4f9f (patch)
treecbb9e000b5e45e4000b94de046cfed55b9b255fd
parente7e517981a6591c79fb49cd8810361b0f3ad5983 (diff)
downloadsrc-bf7b542e0216e6bd3bcd5ff46e376643d41f4f9f.tar.gz
src-bf7b542e0216e6bd3bcd5ff46e376643d41f4f9f.zip
sdhci_fdt: Add gpio_if.h to the source
Otherwise if we compile a kernel without gpio support this file isn't compiled. Also it's needed so it's good to list all deps. PR: 256756
-rw-r--r--sys/modules/sdhci_fdt/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/sdhci_fdt/Makefile b/sys/modules/sdhci_fdt/Makefile
index cc8c8b44f2e6..12b4af37f6e5 100644
--- a/sys/modules/sdhci_fdt/Makefile
+++ b/sys/modules/sdhci_fdt/Makefile
@@ -3,6 +3,6 @@
.PATH: ${SRCTOP}/sys/dev/sdhci
KMOD= sdhci_fdt
-SRCS= sdhci_fdt.c sdhci_fdt_gpio.c sdhci_if.h device_if.h bus_if.h mmcbr_if.h opt_mmccam.h opt_cam.h
+SRCS= sdhci_fdt.c sdhci_fdt_gpio.c sdhci_if.h device_if.h bus_if.h mmcbr_if.h opt_mmccam.h opt_cam.h gpio_if.h
.include <bsd.kmod.mk>