git: 14761188db44 - stable/13 - iwn(4): Correct a typo in a kernel error message

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Fri, 09 Sep 2022 05:20:08 UTC
The branch stable/13 has been updated by gbe (doc committer):

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

commit 14761188db442ab03051e59856220c56b6b5bd2c
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-09-04 10:23:27 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-09-09 05:19:58 +0000

    iwn(4): Correct a typo in a kernel error message
    
    - s/settting/setting/
    
    (cherry picked from commit dc79640e92197b3d55174824891243dbb03e4f01)
---
 sys/dev/iwn/if_iwn.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/iwn/if_iwn.c b/sys/dev/iwn/if_iwn.c
index 334ba644e04b..ffbfd3a68c8d 100644
--- a/sys/dev/iwn/if_iwn.c
+++ b/sys/dev/iwn/if_iwn.c
@@ -9108,7 +9108,7 @@ iwn_set_channel(struct ieee80211com *ic)
 		error = iwn_config(sc);
 		if (error != 0)
 		device_printf(sc->sc_dev,
-		    "%s: error %d settting channel\n", __func__, error);
+		    "%s: error %d setting channel\n", __func__, error);
 	}
 	IWN_UNLOCK(sc);
 }