From bb7dbcdf30ee9697dda0ae45025b4ea183b7a748 Mon Sep 17 00:00:00 2001 From: Vladimir Serbinenko Date: Mon, 8 Feb 2016 00:09:55 +0100 Subject: 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 Reviewed-on: https://review.coreboot.org/13623 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth --- src/mainboard/amd/torpedo/dsdt.asl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/mainboard/amd/torpedo') diff --git a/src/mainboard/amd/torpedo/dsdt.asl b/src/mainboard/amd/torpedo/dsdt.asl index 8926966f63..2014a91f42 100644 --- a/src/mainboard/amd/torpedo/dsdt.asl +++ b/src/mainboard/amd/torpedo/dsdt.asl @@ -774,7 +774,8 @@ DefinitionBlock ( } /* Arbitrarily clear PciExpWakeStatus */ - Store(PEWS, PEWS) + Store(PEWS, Local0) + Store(Local0, PEWS) /* if(DeRefOf(Index(WKST,0))) { * Store(0, Index(WKST,1)) -- cgit v1.2.3