diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2020-03-29 17:29:48 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-03-31 10:33:10 +0000 |
commit | cfaf4c7ac88c08165ce4f95a0a20186ea6be7522 (patch) | |
tree | f3d361812e2f769ebe1a61e88509597bb574ae85 /src/superio/winbond/w83977tf | |
parent | 8602fb7f653ba127a3f6e3f277fc44143174feda (diff) |
superio/winbond/{w83627hf,w83977tf}: Use macro
Change-Id: I3ac8dd2ba089970a18b460769dfc3fabf9395709
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/39907
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/superio/winbond/w83977tf')
-rw-r--r-- | src/superio/winbond/w83977tf/acpi/superio.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/superio/winbond/w83977tf/acpi/superio.asl b/src/superio/winbond/w83977tf/acpi/superio.asl index c7a62cddd1..0a37ac9908 100644 --- a/src/superio/winbond/w83977tf/acpi/superio.asl +++ b/src/superio/winbond/w83977tf/acpi/superio.asl @@ -74,7 +74,7 @@ IndexField (PNP_ADDR_REG, PNP_DATA_REG, ByteAcc, NoLock, Preserve) /* PM: indicate IPD (Immediate Power Down) bit state as D0/D3 */ Method (_PSC) { - ENTER_CONFIG_MODE (0xFF) + ENTER_CONFIG_MODE (PNP_NO_LDN_CHANGE) Store (IPD, Local0) EXIT_CONFIG_MODE () If (Local0) { Return (3) } |