aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/broadwell/pch/acpi/adsp.asl
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2020-10-25 21:11:58 +0100
committerMichael Niewöhner <foss@mniewoehner.de>2020-11-13 12:02:43 +0000
commit56d37fbe6f65d6c92a082d30baf13e79331dcebd (patch)
tree86f387f2f117828125e840f808188ece09480d61 /src/soc/intel/broadwell/pch/acpi/adsp.asl
parente53dfe0cfba9a773079a7229b05ed4b4c5e9e3c4 (diff)
soc/intel/broadwell/pch/acpi: Clean up cosmetics
Use ASL 2.0 syntax where possible and uniformize code style to match the IASL disassembly. Some `Store` in gpio.asl change the binary if touched. Tested with BUILD_TIMELESS=1, Google Buddy does not change. Change-Id: Ic13c081fd7ee2212d851cc14263c1e2fd8970072 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46778 Reviewed-by: Michael Niewöhner <foss@mniewoehner.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/broadwell/pch/acpi/adsp.asl')
-rw-r--r--src/soc/intel/broadwell/pch/acpi/adsp.asl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/soc/intel/broadwell/pch/acpi/adsp.asl b/src/soc/intel/broadwell/pch/acpi/adsp.asl
index 435db4d404..51dd38cd3f 100644
--- a/src/soc/intel/broadwell/pch/acpi/adsp.asl
+++ b/src/soc/intel/broadwell/pch/acpi/adsp.asl
@@ -25,11 +25,11 @@ Device (ADSP)
Method (_CRS, 0, NotSerialized)
{
// Update BAR address and length if set in NVS
- If (LNotEqual (\S8B0, Zero)) {
+ If (\S8B0 != 0) {
CreateDwordField (^RBUF, ^BAR0._BAS, B8A0)
CreateDwordField (^RBUF, ^BAR1._BAS, B8A1)
- Store (\S8B0, B8A0)
- Store (\S8B1, B8A1)
+ B8A0 = \S8B0
+ B8A1 = \S8B1
}
Return (RBUF)
@@ -37,7 +37,7 @@ Device (ADSP)
Method (_STA, 0, NotSerialized)
{
- If (LEqual (\S8EN, 0)) {
+ If (\S8EN == 0) {
Return (0x0)
} Else {
Return (0xF)