summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVadim Bendebury <vbendeb@chromium.org>2012-03-23 14:30:03 +0800
committerGerrit <chrome-bot@google.com>2012-03-23 00:10:47 -0700
commit27f8838fb4e1f157320c4ec871e57dcfcaea5fab (patch)
treeadf25c480147506c33f047424b6a88381b8e8c42
parent72e344d5cdc67e4eb129bb1308ce0e5cca503d2d (diff)
downloadvboot-release-R19-2046.B.tar.gz
Modify crossystem to recognize Panther Point GPIO controllerrelease-R19-2046.B
There is a filter in crossystem which makes sure that it accepts GPIO information only from a subset of GPIO controllers. Panther Point needs to be included in the list. BUG=chrome-os-partner:8615 TEST=manual . run the new crossystem on a Link . modify write protect and and recovery (as it comes from servo-2) pins' status . observe the appropriate crossystem values change Change-Id: I3ac269a9ea520f2c44ee090fe71ec8ad808692ba Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/18936 Reviewed-by: Hung-Te Lin <hungte@chromium.org> Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
-rw-r--r--host/arch/x86/lib/crossystem_arch.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/host/arch/x86/lib/crossystem_arch.c b/host/arch/x86/lib/crossystem_arch.c
index 6ef9063e..2d4a79bb 100644
--- a/host/arch/x86/lib/crossystem_arch.c
+++ b/host/arch/x86/lib/crossystem_arch.c
@@ -561,7 +561,8 @@ static int ReadGpio(int signal_type) {
if (!ReadFileString(controller_name, sizeof(controller_name), name))
return -1;
if ((0 != strcmp(controller_name, "NM10")) &&
- (0 != strcmp(controller_name, "CougarPoint")))
+ (0 != strcmp(controller_name, "CougarPoint")) &&
+ (0 != strcmp(controller_name, "PantherPoint")))
return -1;
/* Modify GPIO number by driver's offset */