git: fa0f891d5444 - main - LinuxKPI: 802.11: fix typo
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 04 Mar 2026 11:13:24 UTC
The branch main has been updated by bz:
URL: https://cgit.FreeBSD.org/src/commit/?id=fa0f891d54449837b47f2ef2266163bdd9117879
commit fa0f891d54449837b47f2ef2266163bdd9117879
Author: Bjoern A. Zeeb <bz@FreeBSD.org>
AuthorDate: 2026-02-17 03:05:16 +0000
Commit: Bjoern A. Zeeb <bz@FreeBSD.org>
CommitDate: 2026-03-04 08:21:41 +0000
LinuxKPI: 802.11: fix typo
Sponsored by: The FreeBSD Foundation
MFC after: 3 days
---
sys/compat/linuxkpi/common/src/linux_80211.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/compat/linuxkpi/common/src/linux_80211.c b/sys/compat/linuxkpi/common/src/linux_80211.c
index 48b87ae47751..20ab5a641415 100644
--- a/sys/compat/linuxkpi/common/src/linux_80211.c
+++ b/sys/compat/linuxkpi/common/src/linux_80211.c
@@ -3508,7 +3508,7 @@ lkpi_iv_newstate(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
} else {
ic_printf(vap->iv_ic, "%s: only station mode currently supported: "
- "cap %p iv_opmode %d\n", __func__, vap, vap->iv_opmode);
+ "vap %p iv_opmode %d\n", __func__, vap, vap->iv_opmode);
return (ENOSYS);
}