mirror of https://github.com/acidanthera/audk.git
OvmfPkg ACPI MADT: Make processor IDs zero based
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jordan Justen <jordan.l.justen@intel.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13386 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
522203de37
commit
54235984ee
|
@ -4,7 +4,7 @@
|
||||||
This file contains a structure definition for the ACPI 1.0 Multiple APIC
|
This file contains a structure definition for the ACPI 1.0 Multiple APIC
|
||||||
Description Table (MADT).
|
Description Table (MADT).
|
||||||
|
|
||||||
Copyright (c) 2008 - 2009, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2008 - 2012, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials are
|
This program and the accompanying materials are
|
||||||
licensed and made available under the terms and conditions of the BSD License
|
licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -102,7 +102,7 @@ EFI_ACPI_1_0_MULTIPLE_APIC_DESCRIPTION_TABLE Madt = {
|
||||||
|
|
||||||
EFI_ACPI_1_0_PROCESSOR_LOCAL_APIC, // Type
|
EFI_ACPI_1_0_PROCESSOR_LOCAL_APIC, // Type
|
||||||
sizeof (EFI_ACPI_1_0_PROCESSOR_LOCAL_APIC_STRUCTURE), // Length
|
sizeof (EFI_ACPI_1_0_PROCESSOR_LOCAL_APIC_STRUCTURE), // Length
|
||||||
0x01, // Processor ID
|
0x00, // Processor ID
|
||||||
0x00, // Local APIC ID
|
0x00, // Local APIC ID
|
||||||
0x00000001, // Flags - Enabled by default
|
0x00000001, // Flags - Enabled by default
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue