From d87ba1f48681abae84a9fc636bfa9d4c0b940521 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Tue, 20 Dec 2022 13:43:11 -0800 Subject: [PATCH] band: add ampdu_params value This is the last bit of information the kernel exposes about the hardware's HT capabilities. --- src/band.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/band.h b/src/band.h index e196a416..a4652fd8 100644 --- a/src/band.h +++ b/src/band.h @@ -77,6 +77,7 @@ struct band { bool vht_supported : 1; uint8_t ht_mcs_set[16]; uint8_t ht_capabilities[2]; + uint8_t ht_ampdu_params; bool ht_supported : 1; uint16_t supported_rates_len; uint8_t supported_rates[];