git: a22fd093431f - stable/13 - LinuxKPI: 802.11 correctly spell queues

From: Bjoern A. Zeeb <bz_at_FreeBSD.org>
Date: Sun, 16 Jan 2022 23:21:02 UTC
The branch stable/13 has been updated by bz:

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

commit a22fd093431fb345bc6c77a3716d180792246fd0
Author:     Ruslan Makhmatkhanov <rm@FreeBSD.org>
AuthorDate: 2022-01-10 18:08:17 +0000
Commit:     Bjoern A. Zeeb <bz@FreeBSD.org>
CommitDate: 2022-01-16 22:39:37 +0000

    LinuxKPI: 802.11 correctly spell queues
    
    PR:             261078
    Sponsored by:   The FreeBSD Foundation
    
    (cherry picked from commit 312ba38a9bee9510fb7836997b1360d95b9305d8)
---
 sys/compat/linuxkpi/common/src/linux_80211.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/compat/linuxkpi/common/src/linux_80211.c b/sys/compat/linuxkpi/common/src/linux_80211.c
index ff58d715ac65..d2e095040696 100644
--- a/sys/compat/linuxkpi/common/src/linux_80211.c
+++ b/sys/compat/linuxkpi/common/src/linux_80211.c
@@ -838,14 +838,14 @@ lkpi_sta_scan_to_auth(struct ieee80211vap *vap, enum ieee80211_state nstate, int
 				break;
 #ifdef LINUXKPI_DEBUG_80211
 			if (count > 0)
-				ic_printf(vap->iv_ic, "%s: waiting for %d quuees "
+				ic_printf(vap->iv_ic, "%s: waiting for %d queues "
 				    "to be allocated by driver\n", __func__, count);
 #endif
 			pause("lkpi80211txq", hz/10);
 		}
 #ifdef LINUXKPI_DEBUG_80211
 		if (count > 0)
-			ic_printf(vap->iv_ic, "%s: %d quuees still not "
+			ic_printf(vap->iv_ic, "%s: %d queues still not "
 			    "allocated by driver\n", __func__, count);
 #endif
 	}