From 2de6eb5aab705116aa4092ff91d13152e1f8508e Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 22 Sep 2025 11:29:04 +0100 Subject: [PATCH] hostapd: Fix VHT capability IDs Signed-off-by: Michael Tremer --- src/initscripts/packages/hostapd | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/initscripts/packages/hostapd b/src/initscripts/packages/hostapd index be5f3d3d4..6a5ef5499 100644 --- a/src/initscripts/packages/hostapd +++ b/src/initscripts/packages/hostapd @@ -62,13 +62,13 @@ declare -A HT_CAPS_DRIVER_FILTERS=( declare -A VHT_CAPS=( # RX LDPC - [0x00000008]="[RXLDPC]" + [0x00000010]="[RXLDPC]" # Short GI for 80 MHz - [0x00000010]="[SHORT-GI-80]" + [0x00000020]="[SHORT-GI-80]" # Short GI for 160/80+80 MHz - [0x00000020]="[SHORT-GI-160]" + [0x00000040]="[SHORT-GI-160]" # TX STBC - [0x00000040]="[TX-STBC-2BY1]" + [0x00000080]="[TX-STBC-2BY1]" # SU Beamformer capable [0x00000800]="[SU-BEAMFORMER]" # SU Beamformee capable -- 2.47.3