mb/intel/d945gclf/acpi: Convert platform.asl to ASL 2.0 syntax

It builds same binary for intel/d945gclf using BUILD_TIMELESS=1

Change-Id: Ic48008719a9cf6942ae8cdaebaab6ba43e665489
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/45281
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Elyes HAOUAS 2020-09-11 07:34:24 +02:00 committed by Patrick Georgi
parent 11e4618794
commit a820caeef4
1 changed files with 2 additions and 2 deletions

View File

@ -20,12 +20,12 @@ Method(_WAK,1)
// was inserted while a sleep state was active. // was inserted while a sleep state was active.
// Are we going to S3? // Are we going to S3?
If (LEqual(Arg0, 3)) { If (Arg0 == 3) {
// .. // ..
} }
// Are we going to S4? // Are we going to S4?
If (LEqual(Arg0, 4)) { If (Arg0 == 4) {
// .. // ..
} }