aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/common/acpi/lpc.asl
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/amd/common/acpi/lpc.asl')
-rw-r--r--src/soc/amd/common/acpi/lpc.asl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/soc/amd/common/acpi/lpc.asl b/src/soc/amd/common/acpi/lpc.asl
index e4b0689bd2..d2224e8f13 100644
--- a/src/soc/amd/common/acpi/lpc.asl
+++ b/src/soc/amd/common/acpi/lpc.asl
@@ -41,10 +41,10 @@ Device(LPCB) {
{
CreateDwordField(^CRS,^BAR0._BAS,SPIB) // Field to hold SPI base address
CreateDwordField(^CRS,^BAR1._BAS,ESPB) // Field to hold eSPI base address
- And(BAR, 0xffffff00, Local0)
- Store(Local0, SPIB) // SPI base address mapped
- Add(Local0, 0x10000, Local1)
- Store(Local1, ESPB) // eSPI base address mapped
+ Local0 = BAR & 0xffffff00
+ SPIB = Local0 // SPI base address mapped
+ Local1 = Local0 + 0x10000
+ ESPB = Local1 // eSPI base address mapped
Return(CRS)
}
}