git: b9dd766aa8e6 - stable/13 - arm64-iommu: Fix a typo in a kernel message

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Thu, 10 Aug 2023 04:17:59 UTC
The branch stable/13 has been updated by gbe:

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

commit b9dd766aa8e6ede5c46aaf307ccacbc7454d4049
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2023-08-04 11:52:36 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2023-08-10 04:17:43 +0000

    arm64-iommu: Fix a typo in a kernel message
    
    - s/endianess/endianness/
    
    (cherry picked from commit f0ab805200fc304e4255fc68f9fb8d5400de84ce)
---
 sys/arm64/iommu/smmu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/arm64/iommu/smmu.c b/sys/arm64/iommu/smmu.c
index e3b7a14e705f..edb126184751 100644
--- a/sys/arm64/iommu/smmu.c
+++ b/sys/arm64/iommu/smmu.c
@@ -1316,7 +1316,7 @@ smmu_check_features(struct smmu_softc *sc)
 	switch (reg & IDR0_TTENDIAN_M) {
 	case IDR0_TTENDIAN_MIXED:
 		if (bootverbose)
-			device_printf(sc->dev, "Mixed endianess supported.\n");
+			device_printf(sc->dev, "Mixed endianness supported.\n");
 		sc->features |= SMMU_FEATURE_TT_LE;
 		sc->features |= SMMU_FEATURE_TT_BE;
 		break;