git: cb309ee5c170 - stable/15 - ath11k: update module Makefiles for v7.0 driver version
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 22 Apr 2026 21:09:19 UTC
The branch stable/15 has been updated by bz:
URL: https://cgit.FreeBSD.org/src/commit/?id=cb309ee5c1700e20ad040b64ab62f055659785e8
commit cb309ee5c1700e20ad040b64ab62f055659785e8
Author: Bjoern A. Zeeb <bz@FreeBSD.org>
AuthorDate: 2026-04-19 15:28:50 +0000
Commit: Bjoern A. Zeeb <bz@FreeBSD.org>
CommitDate: 2026-04-22 20:57:16 +0000
ath11k: update module Makefiles for v7.0 driver version
Update LINUXKPI_VERSION to reflect that the driver is based on
Linux v7.0.
Add optional support for the new cfr (channel frequency response)
file/option.
Sponsored by: The FreeBSD Foundation
(cherry picked from commit 20cf11812ac722852322f2f2994698d7a5fa8dc6)
---
sys/modules/ath11k/Makefile | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/sys/modules/ath11k/Makefile b/sys/modules/ath11k/Makefile
index b1eb2422cc3d..a2f0064c2ae9 100644
--- a/sys/modules/ath11k/Makefile
+++ b/sys/modules/ath11k/Makefile
@@ -5,6 +5,7 @@ DEVATH11KDIR= ${SRCTOP}/sys/contrib/dev/athk/ath11k
ATH11K_PCI= 1
ATH11K_AHB= 0
+ATH11K_CFR= 0
ATH11K_DEBUGFS= 0
ATH11K_TRACE= 0
ATH11K_THERMAL= 0
@@ -31,6 +32,11 @@ SRCS+= ahb.c
CFLAGS+= -DCONFIG_ATH11K_AHB
.endif
+.if defined(ATH11K_CFR) && ${ATH11K_CFR} > 0
+SRCS+= cfr.c
+CFLAGS+= -DCONFIG_ATH11K_CFR
+.endif
+
.if defined(ATH11K_DEBUGFS) && ${ATH11K_DEBUGFS} > 0
SRCS+= debugfs.c debugfs_htt_stats.c debugfs_sta.c
CFLAGS+= -DCONFIG_ATH11K_DEBUGFS
@@ -75,6 +81,6 @@ CFLAGS+= ${LINUXKPI_INCLUDES}
CFLAGS+= -DCONFIG_ATH11K_DEBUG
CFLAGS+= -DKBUILD_MODNAME='"ath11k"'
-CFLAGS+= -DLINUXKPI_VERSION=61900
+CFLAGS+= -DLINUXKPI_VERSION=70000
.include <bsd.kmod.mk>