summaryrefslogtreecommitdiff
path: root/src/mainboard/supermicro/h8scm_fam10/dsdt.asl
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2019-10-25 08:26:27 +0200
committerMartin Roth <martinroth@google.com>2019-10-27 20:59:51 +0000
commite74ca4ffc2008a93e38909a4d583408affbaf28a (patch)
tree23c5c80d79778333709cd22f1689aa67b053099e /src/mainboard/supermicro/h8scm_fam10/dsdt.asl
parentbdc761e3389e7d256411a7cca41d00a20f3fe13a (diff)
downloadcoreboot-e74ca4ffc2008a93e38909a4d583408affbaf28a.tar.xz
mb/supermicro/h8scm_fam10: Use 'Device()' instead of 'Processor()'
Processor() operator is deprecated, use Device() instead. Found-by: ACPICA 20191018 Change-Id: I9f6c025a548e60a91d8064b0aeaf4d8530d78305 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36311 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/supermicro/h8scm_fam10/dsdt.asl')
-rw-r--r--src/mainboard/supermicro/h8scm_fam10/dsdt.asl59
1 files changed, 18 insertions, 41 deletions
diff --git a/src/mainboard/supermicro/h8scm_fam10/dsdt.asl b/src/mainboard/supermicro/h8scm_fam10/dsdt.asl
index 84378458eb..4dfa9995b9 100644
--- a/src/mainboard/supermicro/h8scm_fam10/dsdt.asl
+++ b/src/mainboard/supermicro/h8scm_fam10/dsdt.asl
@@ -58,57 +58,34 @@ DefinitionBlock (
*
*/
Scope (\_PR) { /* define processor scope */
- Processor(
- CPU0, /* name space name */
- 0, /* Unique number for this processor */
- 0x808, /* PBLK system I/O address !hardcoded! */
- 0x06 /* PBLKLEN for boot processor */
- ) {
+ Device (CPU0) {
+ Name (_HID, "ACPI0007")
+ Name (_UID, 0)
#include "acpi/cpstate.asl"
}
-
- Processor(
- CPU1, /* name space name */
- 1, /* Unique number for this processor */
- 0x0000, /* PBLK system I/O address !hardcoded! */
- 0x00 /* PBLKLEN for boot processor */
- ) {
+ Device (CPU1) {
+ Name (_HID, "ACPI0007")
+ Name (_UID, 1)
#include "acpi/cpstate.asl"
}
-
- Processor(
- CPU2, /* name space name */
- 2, /* Unique number for this processor */
- 0x0000, /* PBLK system I/O address !hardcoded! */
- 0x00 /* PBLKLEN for boot processor */
- ) {
+ Device (CPU2) {
+ Name (_HID, "ACPI0007")
+ Name (_UID, 2)
#include "acpi/cpstate.asl"
}
-
- Processor(
- CPU3, /* name space name */
- 3, /* Unique number for this processor */
- 0x0000, /* PBLK system I/O address !hardcoded! */
- 0x00 /* PBLKLEN for boot processor */
- ) {
+ Device (CPU3) {
+ Name (_HID, "ACPI0007")
+ Name (_UID, 3)
#include "acpi/cpstate.asl"
}
-
- Processor(
- CPU4, /* name space name */
- 4, /* Unique number for this processor */
- 0x0000, /* PBLK system I/O address !hardcoded! */
- 0x00 /* PBLKLEN for boot processor */
- ) {
+ Device (CPU4) {
+ Name (_HID, "ACPI0007")
+ Name (_UID, 4)
#include "acpi/cpstate.asl"
}
-
- Processor(
- CPU5, /* name space name */
- 5, /* Unique number for this processor */
- 0x0000, /* PBLK system I/O address !hardcoded! */
- 0x00 /* PBLKLEN for boot processor */
- ) {
+ Device (CPU5) {
+ Name (_HID, "ACPI0007")
+ Name (_UID, 5)
#include "acpi/cpstate.asl"
}
} /* End _PR scope */