The branch main has been updated by aokblast: URL: https://cgit.FreeBSD.org/src/commit/?id=efc0ced5c46f3332bf1847f2889659e7f5412852
commit efc0ced5c46f3332bf1847f2889659e7f5412852 Author: ShengYi Hung <[email protected]> AuthorDate: 2026-04-28 14:27:21 +0000 Commit: ShengYi Hung <[email protected]> CommitDate: 2026-05-05 15:26:48 +0000 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 --- sys/modules/ath10k/Makefile | 2 ++ sys/modules/ath11k/Makefile | 2 ++ sys/modules/ath12k/Makefile | 2 ++ 3 files changed, 6 insertions(+) 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}
