mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 14:49:24 +01:00
monitor: Fix wrong bitmask for VHT capabilities
The bitmask was erroneously allowing bits 16 and 17 to be examined, but these bits belong to the Number of Sounding Dimensions field.
This commit is contained in:
parent
a20a61dca4
commit
1cde7c9f3e
@ -1624,7 +1624,7 @@ static void print_ie_vht_capabilities(unsigned int level,
|
|||||||
[29] = "TX Antenna Pattern Consistency",
|
[29] = "TX Antenna Pattern Consistency",
|
||||||
[30 ... 31] = "Extended NSS BW Support",
|
[30 ... 31] = "Extended NSS BW Support",
|
||||||
};
|
};
|
||||||
uint8_t info_mask[] = { 0xf0, 0x18, 0x7b, 0x30 };
|
uint8_t info_mask[] = { 0xf0, 0x18, 0x78, 0x30 };
|
||||||
|
|
||||||
print_attr(level, "%s: len %u", label, size);
|
print_attr(level, "%s: len %u", label, size);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user