diff options
author | Paul Stewart <pstew@chromium.org> | 2013-09-23 10:20:19 -0700 |
---|---|---|
committer | chrome-internal-fetch <chrome-internal-fetch@google.com> | 2013-09-24 01:32:51 +0000 |
commit | 03cc4b422d28459fca60d29d830078bd8d6f1db1 (patch) | |
tree | 05e2db654f542ff4daf395595e06d974f33d4d02 /board | |
parent | 29ee9c6d48910c8ce327ac1ccee18eaca9036eb1 (diff) | |
download | chrome-ec-03cc4b422d28459fca60d29d830078bd8d6f1db1.tar.gz |
Set WLAN_OFF_L to open drainstabilize-4731.85.Bstabilize-4731.62.Bstabilize-4731.31.Brelease-R31-4731.B
On bolt this pin is connected both to the PCH and the EC.
As designed, it was intended for both parts to treat this
as an open-drain circuit.
Signed-off-by: Paul Stewart <pstew@chromium.org>
BUG=chrome-os-partner:22175
BRANCH=none
TEST=No good test yet, since PCH appears to drive all the time
Change-Id: Ib6ca16b4f797c8c334fb9f030f20cdbbc756f3fb
Reviewed-on: https://chromium-review.googlesource.com/170257
Reviewed-by: Randall Spangler <rspangler@chromium.org>
Commit-Queue: Paul Stewart <pstew@chromium.org>
Tested-by: Paul Stewart <pstew@chromium.org>
Diffstat (limited to 'board')
-rw-r--r-- | board/bolt/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/bolt/board.c b/board/bolt/board.c index 4fc4b2fc49..b188938db3 100644 --- a/board/bolt/board.c +++ b/board/bolt/board.c @@ -91,7 +91,7 @@ const struct gpio_info gpio_list[] = { {"VCORE_EN", LM4_GPIO_C, (1<<5), GPIO_OUT_LOW, NULL}, {"PP5000_EN", LM4_GPIO_H, (1<<7), GPIO_OUT_LOW, NULL}, {"SYS_PWROK", LM4_GPIO_H, (1<<2), GPIO_OUT_LOW, NULL}, - {"WLAN_OFF_L", LM4_GPIO_J, (1<<4), GPIO_OUT_LOW, NULL}, + {"WLAN_OFF_L", LM4_GPIO_J, (1<<4), GPIO_ODR_LOW, NULL}, {"ENABLE_BACKLIGHT", LM4_GPIO_M, (1<<7), GPIO_OUT_LOW, NULL}, {"ENABLE_TOUCHPAD", LM4_GPIO_N, (1<<1), GPIO_OUT_LOW, NULL}, |