summaryrefslogtreecommitdiff
path: root/board/daisy
diff options
context:
space:
mode:
authorVincent Palatin <vpalatin@chromium.org>2012-02-23 08:58:57 -0800
committerVincent Palatin <vpalatin@chromium.org>2012-02-23 13:28:46 -0800
commit64e6afdefa58008bed34b2fb01ed8895a219a2d5 (patch)
tree82dc01b383906061ac59ae9158dbf521af524ca8 /board/daisy
parentc977d241b3aec49fed7ed7344f2ebf6e59885d63 (diff)
downloadchrome-ec-64e6afdefa58008bed34b2fb01ed8895a219a2d5.tar.gz
stm32l: fix ACOK signal
The PMIC_ACOK signal is active-low. Let's drive it correctly. Signed-off-by: Vincent Palatin <vpalatin@chromium.org> BUG=None TEST=On ADV board, check that a short key press on the power button is now able to start the board Change-Id: Iea71939aeb532618019a9e7774721703c632976f
Diffstat (limited to 'board/daisy')
-rw-r--r--board/daisy/board.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/daisy/board.c b/board/daisy/board.c
index e98e858ddc..c2a885b01c 100644
--- a/board/daisy/board.c
+++ b/board/daisy/board.c
@@ -34,7 +34,7 @@ const struct gpio_info gpio_list[GPIO_COUNT] = {
{"EN_PP1350", GPIO_A, (1<<2), GPIO_OUT_LOW, NULL},
{"EN_PP5000", GPIO_A, (1<<3), GPIO_OUT_LOW, NULL},
{"EN_PP3300", GPIO_A, (1<<8), GPIO_OUT_LOW, NULL},
- {"PMIC_ACOK", GPIO_A, (1<<12), GPIO_OUT_LOW, NULL},
+ {"PMIC_ACOK", GPIO_A, (1<<12), GPIO_OUT_HIGH, NULL},
{"ENTERING_RW", GPIO_B, (1<<1), GPIO_OUT_LOW, NULL},
{"CHARGER_EN", GPIO_B, (1<<2), GPIO_OUT_LOW, NULL},
{"EC_INT", GPIO_B, (1<<9), GPIO_OUT_LOW, NULL},