mb/msi/ms7721: Use 'Device()' instead of 'Processor()'
Processor() operator is deprecated, use Device() instead. Change-Id: Ib70b349742fb636e25f1369d54641997e57a2045 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36310 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
parent
d115940d80
commit
8896dc85de
|
@ -22,17 +22,25 @@
|
|||
#include <arch/acpi.h>
|
||||
DefinitionBlock ("DSDT.AML", "DSDT", 0x01, OEM_ID, ACPI_TABLE_CREATOR, 0x00010001)
|
||||
{
|
||||
Scope (\_PR) {
|
||||
Processor(CPU0,0,0x808,0x06) {
|
||||
Scope (\_PR) {
|
||||
Device (CPU0) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 0)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
Processor(CPU1,1,0x0,0x0) {
|
||||
Device (CPU1) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 1)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
Processor(CPU2,2,0x0,0x0) {
|
||||
Device (CPU2) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 2)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
Processor(CPU3,3,0x0,0x0) {
|
||||
Device (CPU3) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 3)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue