diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2016-07-10 20:36:42 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2016-07-10 20:36:42 +0000 |
commit | 423f8ed6e0df9d7e3e0018a5d439bbff7af32f5d (patch) | |
tree | e0d70e56d8ea2a12c923d351b46c7d8b7511f6e4 /sys/dev/acpi/acpireg.h | |
parent | 8b6034b07dc8906c8bc65785f849426fd073e23a (diff) |
Rename apic_proc_uid field to acpi_proc_uid in the acpi_madt_x2apic struct.
It is the ACPI processor UID that is stored here.
ok guenther@
Diffstat (limited to 'sys/dev/acpi/acpireg.h')
-rw-r--r-- | sys/dev/acpi/acpireg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpi/acpireg.h b/sys/dev/acpi/acpireg.h index 87576bb58e1..1bef5c4fba4 100644 --- a/sys/dev/acpi/acpireg.h +++ b/sys/dev/acpi/acpireg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: acpireg.h,v 1.35 2016/05/07 18:03:36 kettenis Exp $ */ +/* $OpenBSD: acpireg.h,v 1.36 2016/07/10 20:36:41 kettenis Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * Copyright (c) 2005 Marco Peereboom <marco@openbsd.org> @@ -338,7 +338,7 @@ struct acpi_madt_x2apic { u_int8_t reserved[2]; u_int32_t apic_id; u_int32_t flags; /* Same flags as acpi_madt_lapic */ - u_int32_t apic_proc_uid; + u_int32_t acpi_proc_uid; } __packed; struct acpi_madt_x2apic_nmi { |