Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 10 Jun 2022 12:33:58 GMT
From:      Gordon Bergling <gbe@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 306c6832cbd0 - stable/13 - acpi(4): Fix a typo in a debug statement
Message-ID:  <202206101233.25ACXw4N023491@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by gbe (doc committer):

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

commit 306c6832cbd0bcf53dfa01697ac9609d46efe150
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-06-04 13:17:09 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-06-10 12:27:06 +0000

    acpi(4): Fix a typo in a debug statement
    
    - s/Efficency/tEfficiency/
    
    Obtained from:  NetBSD
    
    (cherry picked from commit 0b4302aa934d748503d6377f875f2972db41a092)
---
 usr.sbin/acpi/acpidump/acpi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/usr.sbin/acpi/acpidump/acpi.c b/usr.sbin/acpi/acpidump/acpi.c
index 31baa3601338..c560a38411ba 100644
--- a/usr.sbin/acpi/acpidump/acpi.c
+++ b/usr.sbin/acpi/acpidump/acpi.c
@@ -555,7 +555,7 @@ acpi_print_madt(ACPI_SUBTABLE_HEADER *mp)
 		printf("\tGICR ADDR=%016jx\n",
 		    (uintmax_t)gicc->GicrBaseAddress);
 		printf("\tMPIDR=%jx\n", (uintmax_t)gicc->ArmMpidr);
-		printf("\tEfficency Class=%d\n", (u_int)gicc->EfficiencyClass);
+		printf("\tEfficiency Class=%d\n", (u_int)gicc->EfficiencyClass);
 		printf("\tSPE INTR=%d\n", gicc->SpeInterrupt);
 		break;
 	case ACPI_MADT_TYPE_GENERIC_DISTRIBUTOR:



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