diff options
| author | ShengYi Hung <aokblast@FreeBSD.org> | 2026-04-28 14:27:21 +0000 |
|---|---|---|
| committer | ShengYi Hung <aokblast@FreeBSD.org> | 2026-05-05 15:26:48 +0000 |
| commit | efc0ced5c46f3332bf1847f2889659e7f5412852 (patch) | |
| tree | a0dd4bdee8fb9fcbeca6cdecce93a0c0fb0e41a0 | |
| parent | 261002908ffd9f13d19d1c6be6f82edac26b6938 (diff) | |
ath{10,11,12}k: Add missing header in Makefile
Reviewed by: bz
MFC after: 2 weeks
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D56693
| -rw-r--r-- | sys/modules/ath10k/Makefile | 2 | ||||
| -rw-r--r-- | sys/modules/ath11k/Makefile | 2 | ||||
| -rw-r--r-- | sys/modules/ath12k/Makefile | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/sys/modules/ath10k/Makefile b/sys/modules/ath10k/Makefile index b28df768c3d5..becf42a6a79a 100644 --- a/sys/modules/ath10k/Makefile +++ b/sys/modules/ath10k/Makefile @@ -1,3 +1,5 @@ +.include <kmod.opts.mk> + DEVATH10KDIR= ${SRCTOP}/sys/contrib/dev/athk/ath10k .PATH: ${DEVATH10KDIR} diff --git a/sys/modules/ath11k/Makefile b/sys/modules/ath11k/Makefile index a2f0064c2ae9..eaf196af5b55 100644 --- a/sys/modules/ath11k/Makefile +++ b/sys/modules/ath11k/Makefile @@ -1,3 +1,5 @@ +.include <kmod.opts.mk> + DEVATH11KDIR= ${SRCTOP}/sys/contrib/dev/athk/ath11k .PATH: ${DEVATH11KDIR} diff --git a/sys/modules/ath12k/Makefile b/sys/modules/ath12k/Makefile index ecca0bc3b409..071bb88a8b37 100644 --- a/sys/modules/ath12k/Makefile +++ b/sys/modules/ath12k/Makefile @@ -1,3 +1,5 @@ +.include <kmod.opts.mk> + DEVATH12KDIR= ${SRCTOP}/sys/contrib/dev/athk/ath12k .PATH: ${DEVATH12KDIR} |
