diff options
author | Nico Huber <nico.huber@secunet.com> | 2013-07-03 12:07:43 +0200 |
---|---|---|
committer | Nico Huber <nico.huber@secunet.com> | 2013-07-04 11:28:11 +0200 |
commit | f66dd6966a2df6af8ec4a4018f1538b1166256f7 (patch) | |
tree | f2a072aaf6364fbf0094840ad6a3325032c741c2 /src/superio/winbond/w83627hf | |
parent | 0bd5dff58cb43b307bcb02ac6baa436a525a5025 (diff) | |
download | coreboot-f66dd6966a2df6af8ec4a4018f1538b1166256f7.tar.xz |
w83627hf/acpi: Fix offset of logical device activation
The PnP's logical device activation normally resides at 0x30. This might
have been overlooked as 0x29 looks very close to 0x30 in human eyes.
Change-Id: Id5d5a92f2683ebe1808b943f686c062151d216da
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: http://review.coreboot.org/3592
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/superio/winbond/w83627hf')
-rw-r--r-- | src/superio/winbond/w83627hf/acpi/superio.asl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/superio/winbond/w83627hf/acpi/superio.asl b/src/superio/winbond/w83627hf/acpi/superio.asl index 2e0c01ed43..03f72f7189 100644 --- a/src/superio/winbond/w83627hf/acpi/superio.asl +++ b/src/superio/winbond/w83627hf/acpi/superio.asl @@ -113,6 +113,7 @@ Device(SIO) { LCKC, 1, /* Lock Configuration Registers */ Offset (0x29), IO3S, 8, /* GPIO3 pin selection register */ + Offset (0x30), ACTR, 1, /* Logical device activation */ ACT1, 1, /* Logical part activation 1 (mostly unused) */ ACT2, 1, /* Logical part activation 2 (mostly unused) */ |