From 82ce043f4ccc80e91dfab1b6a3d21f0a178c306f Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 23 Jul 2025 15:45:12 +0200 Subject: [PATCH] hostapd: ath12k does not support Greenfield either Signed-off-by: Michael Tremer --- src/initscripts/packages/hostapd | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/initscripts/packages/hostapd b/src/initscripts/packages/hostapd index 18c6259c7..0e58c3f1c 100644 --- a/src/initscripts/packages/hostapd +++ b/src/initscripts/packages/hostapd @@ -54,10 +54,9 @@ declare -A HT_CAPS=( ) declare -A HT_CAPS_DRIVER_FILTERS=( - # ath10k does not support Greenfield or Delayed Block Ack + # ath1[02]k does not support Greenfield or Delayed Block Ack [ath10k_pci]="$(( 0xffff & ~0x0008 & ~0x0100 ))" - # ath12k does not support Delayed Block Ack - [ath12k_pci]="$(( 0xffff & ~0x0100 ))" + [ath12k_pci]="$(( 0xffff & ~0x0008 & ~0x0100 ))" ) declare -A VHT_CAPS=( -- 2.47.3