diff options
| author | Bjoern A. Zeeb <bz@FreeBSD.org> | 2026-07-14 06:39:12 +0000 |
|---|---|---|
| committer | Bjoern A. Zeeb <bz@FreeBSD.org> | 2026-07-17 15:48:54 +0000 |
| commit | c589dc4ef77d8e165e449a861c3705002ca4a762 (patch) | |
| tree | c8ffb3aa3d74637b606a25945866dcfc31f68e03 | |
| parent | e4795d3dbee71c463429e2901dad111fbc2d08fc (diff) | |
mt76: disable debugfs due to missing piece still in review
Until D57524 is not reviewed and committed we will have a missing
function declaration which prevents us to compile (in) debugfs for
mt76 core and mt7921. Temporary disable debugfs again.
Sponsored by: The FreeBSD Foundation
MFC after: 3 days
| -rw-r--r-- | sys/modules/mt76/core/Makefile | 2 | ||||
| -rw-r--r-- | sys/modules/mt76/mt7921/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/modules/mt76/core/Makefile b/sys/modules/mt76/core/Makefile index 59d34df86f70..81b30b554ee5 100644 --- a/sys/modules/mt76/core/Makefile +++ b/sys/modules/mt76/core/Makefile @@ -6,7 +6,7 @@ KMOD= ${MT76_DRIVER_NAME} .PATH: ${COMMONDIR} -MT76_DEBUGFS?= 1 +MT76_DEBUGFS?= 0 # Basic stuff. SRCS+= mac80211.c mmio.c util.c dma.c eeprom.c tx.c agg-rx.c mcu.c diff --git a/sys/modules/mt76/mt7921/Makefile b/sys/modules/mt76/mt7921/Makefile index d1def787144c..badcba3bfe52 100644 --- a/sys/modules/mt76/mt7921/Makefile +++ b/sys/modules/mt76/mt7921/Makefile @@ -8,7 +8,7 @@ MT7921_PCI= 1 MT7921_SDIO= 0 MT7921_USB= 0 -MT7921_DEBUGFS= 1 +MT7921_DEBUGFS= 0 # Common stuff. SRCS+= init.c main.c mac.c mcu.c |
