Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 10 Feb 2025 14:52:37 GMT
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: b6d4dc0b30f2 - stable/14 - net80211: name IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_{NONE -> NO160}
Message-ID:  <202502101452.51AEqb6E027780@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by bz:

URL: https://cgit.FreeBSD.org/src/commit/?id=b6d4dc0b30f26b5f1add8b501ffb10fe5947a326

commit b6d4dc0b30f26b5f1add8b501ffb10fe5947a326
Author:     Bjoern A. Zeeb <bz@FreeBSD.org>
AuthorDate: 2024-11-28 23:37:31 +0000
Commit:     Bjoern A. Zeeb <bz@FreeBSD.org>
CommitDate: 2025-02-10 14:52:08 +0000

    net80211: name IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_{NONE -> NO160}
    
    IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_NONE is confusing as the field does
    indicate that the STA does not support 160 (or 80+80) Mhz.
    [802.11ac: Table 8-183v-Subfields of the VHT Capabilities Info field]
    All the other bits are related to the support of 160Mhz so make it
    clear that it does not mean that we do not support any VHT CHAN WIDTH
    but merely do not support the optional 160/80+80.
    
    Sponsored by:   The FreeBSD Foundation
    Reviewed by:    adrian
    Differential Revision: https://reviews.freebsd.org/D47837
    
    (cherry picked from commit 116102101a566ec8924b397c1523d362008fb35c)
---
 sys/net80211/ieee80211.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/net80211/ieee80211.h b/sys/net80211/ieee80211.h
index fe5e1088e130..af411016a170 100644
--- a/sys/net80211/ieee80211.h
+++ b/sys/net80211/ieee80211.h
@@ -899,7 +899,7 @@ struct ieee80211_vht_operation {
 
 #define	IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_MASK	0x0000000C
 #define	IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_MASK_S	2
-#define	IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_NONE		0
+#define	IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_NO160		0
 #define	IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_160MHZ		1
 #define	IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_160_80P80MHZ	2
 #define	IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_RESERVED	3



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202502101452.51AEqb6E027780>