UPSTREAM: 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.

BUG=none
BRANCH=none
TEST=none

Change-Id: I8e814348ba94b51d3cc52c7b94bd484e66e6a6b4
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: 2ac86c37b2
Original-Change-Id: I387b1c36aa115e03d0c6f9939eb13c93b14ad909
Original-Signed-off-by: Duncan Laurie <dlaurie@chromium.org>
Original-Reviewed-on: https://review.coreboot.org/20007
Original-Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Original-Reviewed-by: Furquan Shaikh <furquan@google.com>
Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/522711
This commit is contained in:
Duncan Laurie 2017-06-01 14:31:06 -07:00 committed by chrome-bot
parent 81465afb57
commit 249c368943

View file

@ -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)
})