diff options
author | Kevin Lo <kevlo@cvs.openbsd.org> | 2024-11-14 07:49:25 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@cvs.openbsd.org> | 2024-11-14 07:49:25 +0000 |
commit | 6a126dc1aecf217af89cf683c51927dbd40ed350 (patch) | |
tree | 6edaa20c97a049031ed88b29492199c8d8665a6c | |
parent | 14b67a935975944976d9b11882248e792c7518e4 (diff) |
Typo fixes in comments
ok stsp@
-rw-r--r-- | sys/net80211/ieee80211_node.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/net80211/ieee80211_node.h b/sys/net80211/ieee80211_node.h index 6a9fd5f3d51..4863772ce2e 100644 --- a/sys/net80211/ieee80211_node.h +++ b/sys/net80211/ieee80211_node.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ieee80211_node.h,v 1.94 2022/03/20 12:01:58 stsp Exp $ */ +/* $OpenBSD: ieee80211_node.h,v 1.95 2024/11/14 07:49:24 kevlo Exp $ */ /* $NetBSD: ieee80211_node.h,v 1.9 2004/04/30 22:57:32 dyoung Exp $ */ /*- @@ -52,7 +52,7 @@ extern const struct ieee80211_rateset ieee80211_std_rateset_11a; extern const struct ieee80211_rateset ieee80211_std_rateset_11b; extern const struct ieee80211_rateset ieee80211_std_rateset_11g; -/* Index into ieee80211_std_rateset_11n[] array. */ +/* Index into ieee80211_std_ratesets_11n[] array. */ #define IEEE80211_HT_RATESET_SISO 0 #define IEEE80211_HT_RATESET_SISO_SGI 1 #define IEEE80211_HT_RATESET_MIMO2 2 @@ -98,7 +98,7 @@ struct ieee80211_ht_rateset { extern const struct ieee80211_ht_rateset ieee80211_std_ratesets_11n[]; -/* Index into ieee80211_std_rateset_11ac[] array. */ +/* Index into ieee80211_std_ratesets_11ac[] array. */ #define IEEE80211_VHT_RATESET_SISO 0 #define IEEE80211_VHT_RATESET_SISO_SGI 1 #define IEEE80211_VHT_RATESET_MIMO2 2 @@ -117,7 +117,7 @@ extern const struct ieee80211_ht_rateset ieee80211_std_ratesets_11n[]; #define IEEE80211_VHT_RATESET_MAX_NRATES 10 struct ieee80211_vht_rateset { - int idx; /* This rateset's index in ieee80211_std_rateset_11ac[]. */ + int idx; /* This rateset's index in ieee80211_std_ratesets_11ac[]. */ uint32_t nrates; uint32_t rates[IEEE80211_VHT_RATESET_MAX_NRATES]; /* 500 kbit/s units */ |