Angel Pons has uploaded this change for review.

View Change

nb/intel/haswell: Use ASL 2.0 syntax

Tested with BUILD_TIMELESS=1, Asrock B85M Pro4 does not change.

Change-Id: I9c69028ff13efa6999b6110fbcd9233a09def991
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
---
M src/northbridge/intel/haswell/acpi/hostbridge.asl
1 file changed, 3 insertions(+), 3 deletions(-)

git pull ssh://review.coreboot.org:29418/coreboot refs/changes/52/44152/1
diff --git a/src/northbridge/intel/haswell/acpi/hostbridge.asl b/src/northbridge/intel/haswell/acpi/hostbridge.asl
index b8a1af8..1d4eba6 100644
--- a/src/northbridge/intel/haswell/acpi/hostbridge.asl
+++ b/src/northbridge/intel/haswell/acpi/hostbridge.asl
@@ -173,12 +173,12 @@
If (Acquire (CTCM, 100)) {
Return (0)
}
- If (LEqual (CTCD, CTCC)) {
+ If (CTCD == CTCC) {
Release (CTCM)
Return (0)
}

- Store ("Set TDP Down", Debug)
+ Debug = "Set TDP Down"

/* Set CTC */
CTCS = CTCD
@@ -214,7 +214,7 @@
Return (0)
}

- Store ("Set TDP Nominal", Debug)
+ Debug = "Set TDP Nominal"

/* Set PL1 */
PL1V = CTDN

To view, visit change 44152. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I9c69028ff13efa6999b6110fbcd9233a09def991
Gerrit-Change-Number: 44152
Gerrit-PatchSet: 1
Gerrit-Owner: Angel Pons <th3fanbus@gmail.com>
Gerrit-MessageType: newchange