The branch stable/14 has been updated by gbe:

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

commit 08e65097a1f3fb155e98a0ae9b9a7098cea8ffd4
Author:     Gordon Bergling <[email protected]>
AuthorDate: 2025-10-29 15:28:06 +0000
Commit:     Gordon Bergling <[email protected]>
CommitDate: 2025-11-19 11:26:22 +0000

    bwi(4): Fix a typo in a panic messsage
    
    - s/unsupport/unsupported/
    
    (cherry picked from commit 404af374b10ca56c6f82510a5bb23232a9f25c34)
---
 sys/dev/bwi/if_bwi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/bwi/if_bwi.c b/sys/dev/bwi/if_bwi.c
index f9a6b2357cc0..44b16dba5f8a 100644
--- a/sys/dev/bwi/if_bwi.c
+++ b/sys/dev/bwi/if_bwi.c
@@ -2896,7 +2896,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

Reply via email to