Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 4 Aug 2023 11:53:04 GMT
From:      Gordon Bergling <gbe@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: f0ab805200fc - main - arm64-iommu: Fix a typo in a kernel message
Message-ID:  <202308041153.374Br4NC069674@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by gbe:

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

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

    arm64-iommu: Fix a typo in a kernel message
    
    - s/endianess/endianness/
    
    MFC after:      5 days
---
 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 3316321bc41b..834ab9ce0504 100644
--- a/sys/arm64/iommu/smmu.c
+++ b/sys/arm64/iommu/smmu.c
@@ -1359,7 +1359,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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202308041153.374Br4NC069674>