HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/31565
Change subject: src/arch/x86/acpi.c: Update SRAT revision number ......................................................................
src/arch/x86/acpi.c: Update SRAT revision number
We currently use ACPI v3.0, so the SRAT revision number is "2".
Change-Id: I14311029c887a2260c3a93d0b7fca6e8d546edd0 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/arch/x86/acpi.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/31565/1
diff --git a/src/arch/x86/acpi.c b/src/arch/x86/acpi.c index 6396877..fc9dfe1 100644 --- a/src/arch/x86/acpi.c +++ b/src/arch/x86/acpi.c @@ -1383,8 +1383,8 @@ return 4; case SSDT: /* ACPI 3.0 upto 6.3: 2 */ return 2; - case SRAT: /* ACPI 2.0: 1, ACPI 3.0: 2, ACPI 4.0 upto 6.3: 3 */ - return 1; /* TODO Should probably be upgraded to 2 */ + case SRAT: /* ACPI 3.0: 2, ACPI 4.0 upto 6.3: 3 */ + return 2; case DMAR: return 1; case SLIT: /* ACPI 2.0 upto 6.3: 1 */