The branch stable/13 has been updated by gbe:

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

commit b9dd766aa8e6ede5c46aaf307ccacbc7454d4049
Author:     Gordon Bergling <[email protected]>
AuthorDate: 2023-08-04 11:52:36 +0000
Commit:     Gordon Bergling <[email protected]>
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;

Reply via email to