git: f0ab805200fc - main - arm64-iommu: Fix a typo in a kernel message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 04 Aug 2023 11:53:04 UTC
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;