diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2016-02-08 00:09:55 +0100 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-02-09 19:57:57 +0100 |
commit | bb7dbcdf30ee9697dda0ae45025b4ea183b7a748 (patch) | |
tree | bb22d11a052081a04cb3e4a5081758d0c9dca934 /src/mainboard/amd/dinar | |
parent | 01586063ab0b65421678399256441d7a5190e169 (diff) | |
download | coreboot-bb7dbcdf30ee9697dda0ae45025b4ea183b7a748.tar.xz |
ASL: Use temporary variable when storing register into itself.
Otherwise it triggers a IASL warning with new IASL.
Change-Id: I090ee18df78ea779137ee6797c55b96ea27e6d27
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: https://review.coreboot.org/13623
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/amd/dinar')
-rw-r--r-- | src/mainboard/amd/dinar/dsdt.asl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainboard/amd/dinar/dsdt.asl b/src/mainboard/amd/dinar/dsdt.asl index c5dacefa6e..2c2ae76d93 100644 --- a/src/mainboard/amd/dinar/dsdt.asl +++ b/src/mainboard/amd/dinar/dsdt.asl @@ -802,7 +802,8 @@ DefinitionBlock ( } /* Arbitrarily clear PciExpWakeStatus */ - Store(PEWS, PEWS) + Store(PEWS, Local0) + Store(Local0, PEWS) /* if(DeRefOf(Index(WKST,0))) { * Store(0, Index(WKST,1)) |