From bdc761e3389e7d256411a7cca41d00a20f3fe13a Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Fri, 25 Oct 2019 08:25:30 +0200 Subject: mb/amd/serengeti_cheetah_fam10: Use 'Device()' instead of 'Processor()' Processor() operator is deprecated, use Device() instead. Change-Id: I1650df927aa6d4a1282ed50b2bcbb63d5bd04347 Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/c/coreboot/+/36316 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth --- src/mainboard/amd/serengeti_cheetah_fam10/dsdt.asl | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/src/mainboard/amd/serengeti_cheetah_fam10/dsdt.asl b/src/mainboard/amd/serengeti_cheetah_fam10/dsdt.asl index 0c4cd3881c..29b146b0d0 100644 --- a/src/mainboard/amd/serengeti_cheetah_fam10/dsdt.asl +++ b/src/mainboard/amd/serengeti_cheetah_fam10/dsdt.asl @@ -18,10 +18,22 @@ DefinitionBlock ("DSDT.aml", "DSDT", 1, OEM_ID, ACPI_TABLE_CREATOR, 100925440) // Scope (_PR) // { -// Processor (CPU0, 0x00, 0x0000C010, 0x06) {} -// Processor (CPU1, 0x01, 0x00000000, 0x00) {} -// Processor (CPU2, 0x02, 0x00000000, 0x00) {} -// Processor (CPU3, 0x03, 0x00000000, 0x00) {} +// Device (CPU0) { +// Name (_HID, "ACPI0007") +// Name (_UID, 0) +// } +// Device (CPU1) { +// Name (_HID, "ACPI0007") +// Name (_UID, 1) +// } +// Device (CPU2) { +// Name (_HID, "ACPI0007") +// Name (_UID, 2) +// } +// Device (CPU3) { +// Name (_HID, "ACPI0007") +// Name (_UID, 3) +// } // } Method (FWSO, 0, NotSerialized) { } -- cgit v1.2.3