git: 0b4302aa934d - main - acpi(4): Fix a typo in a debug statement
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 04 Jun 2022 13:17:22 UTC
The branch main has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=0b4302aa934d748503d6377f875f2972db41a092
commit 0b4302aa934d748503d6377f875f2972db41a092
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-06-04 13:17:09 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-06-04 13:17:09 +0000
acpi(4): Fix a typo in a debug statement
- s/Efficency/tEfficiency/
Obtained from: NetBSD
MFC after: 3 days
---
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: