diff options
| author | Gordon Bergling <gbe@FreeBSD.org> | 2025-10-29 15:28:06 +0000 |
|---|---|---|
| committer | Gordon Bergling <gbe@FreeBSD.org> | 2025-10-31 18:50:40 +0000 |
| commit | 404af374b10ca56c6f82510a5bb23232a9f25c34 (patch) | |
| tree | 8a02b5b81124cd3f59d86e84d6582db5bcafa24b | |
| parent | 3eaa2a852b475c7f063bbf677fa536e76514d309 (diff) | |
bwi(4): Fix a typo in a panic messsage
- s/unsupport/unsupported/
MFC after: 5 days
| -rw-r--r-- | sys/dev/bwi/if_bwi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/bwi/if_bwi.c b/sys/dev/bwi/if_bwi.c index 85146d4c4010..80fc5e9e47af 100644 --- a/sys/dev/bwi/if_bwi.c +++ b/sys/dev/bwi/if_bwi.c @@ -2900,7 +2900,7 @@ bwi_plcp_header(const struct ieee80211_rate_table *rt, else if (modtype == IEEE80211_T_DS) bwi_ds_plcp_header(plcp, pkt_len, rate); else - panic("unsupport modulation type %u\n", modtype); + panic("unsupported modulation type %u\n", modtype); } static int |
