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>
This commit is contained in:
Duncan Laurie 2017-06-01 14:31:06 -07:00 committed by Patrick Georgi
parent 87b5ff0124
commit 2ac86c37b2
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ Device (SIO) {
EC_HOST_CMD_REGION0, EC_HOST_CMD_REGION0, 0x08, EC_HOST_CMD_REGION0, EC_HOST_CMD_REGION0, 0x08,
EC_HOST_CMD_REGION_SIZE) EC_HOST_CMD_REGION_SIZE)
IO (Decode16, 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) EC_HOST_CMD_REGION_SIZE)
}) })