Duncan Laurie has uploaded a new change for review. ( https://review.coreboot.org/20007 )
Change subject: ec/google/chromeec: Fix typo in ECUI device ......................................................................
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 --- M src/ec/google/chromeec/acpi/superio.asl 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/07/20007/1
diff --git a/src/ec/google/chromeec/acpi/superio.asl b/src/ec/google/chromeec/acpi/superio.asl index 04b112f..0f06e30 100644 --- a/src/ec/google/chromeec/acpi/superio.asl +++ b/src/ec/google/chromeec/acpi/superio.asl @@ -82,7 +82,7 @@ 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) })