diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-10-25 08:25:30 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2019-10-27 19:05:02 +0000 |
commit | bdc761e3389e7d256411a7cca41d00a20f3fe13a (patch) | |
tree | 9e028ec0ceab3d62b80a22a9a32577dd3eec2712 | |
parent | 8896dc85de2c0db442c1bccf8a7a44dd90edf456 (diff) | |
download | coreboot-bdc761e3389e7d256411a7cca41d00a20f3fe13a.tar.xz |
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 <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/36316
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
-rw-r--r-- | src/mainboard/amd/serengeti_cheetah_fam10/dsdt.asl | 20 |
1 files 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) { } |