diff options
author | Duncan Laurie <dlaurie@chromium.org> | 2017-06-01 14:31:06 -0700 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2017-06-02 07:59:07 +0200 |
commit | 2ac86c37b20aa7551fad6c8fd71276665d8dc9dd (patch) | |
tree | 7b44199af9f4813417381ce2f137d3e2489b7678 /src/ec/google | |
parent | 87b5ff0124f86e48c38856ee7dbaa5436f7af2fd (diff) |
ec/google/chromeec: Fix typo in ECUI device
The IO region defined for EC_HOST_CMD_REGION1 was incorrectly
using EC_HOST_CMD_REGION0 for the range maximum so the region
was showing a minimum of 0x880 and a maximum of 0x800.
Both min and max should report the same value as this region
is fixed and cannot be relocated by the OS.
Change-Id: I387b1c36aa115e03d0c6f9939eb13c93b14ad909
Signed-off-by: Duncan Laurie <dlaurie@chromium.org>
Reviewed-on: https://review.coreboot.org/20007
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/ec/google')
-rw-r--r-- | src/ec/google/chromeec/acpi/superio.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ec/google/chromeec/acpi/superio.asl b/src/ec/google/chromeec/acpi/superio.asl index 04b112f7f7..0f06e30cb3 100644 --- a/src/ec/google/chromeec/acpi/superio.asl +++ b/src/ec/google/chromeec/acpi/superio.asl @@ -82,7 +82,7 @@ Device (SIO) { EC_HOST_CMD_REGION0, EC_HOST_CMD_REGION0, 0x08, EC_HOST_CMD_REGION_SIZE) IO (Decode16, - EC_HOST_CMD_REGION1, EC_HOST_CMD_REGION0, 0x08, + EC_HOST_CMD_REGION1, EC_HOST_CMD_REGION1, 0x08, EC_HOST_CMD_REGION_SIZE) }) |