From 19bcc7f4816d87a4bf5e0088855a0bccd79f40bd Mon Sep 17 00:00:00 2001 From: Bill Richardson Date: Wed, 26 Feb 2014 10:47:27 -0800 Subject: samus: fix an output to be open-drain This was always supposed to be open drain. BUG=chrome-os-partner:22870 BRANCH=ToT,samus TEST=manual Try turning it off and back on again. ;-) gpioset TOUCHSCREEN_RESET_L 0 gpioset TOUCHSCREEN_RESET_L 1 gpioset TOUCHSCREEN_RESET_L 0 Change-Id: I5e2a49c979294f68b86e2c91d2ccee5f6128ef5a Signed-off-by: Bill Richardson Reviewed-on: https://chromium-review.googlesource.com/188045 Reviewed-by: Randall Spangler --- board/samus/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/samus/board.c b/board/samus/board.c index c0a1325a45..7aca8afc10 100644 --- a/board/samus/board.c +++ b/board/samus/board.c @@ -111,7 +111,7 @@ const struct gpio_info gpio_list[] = { {"PCH_RCIN_L", LM4_GPIO_F, (1<<3), GPIO_ODR_HIGH, NULL}, {"PCH_SYS_RST_L", LM4_GPIO_F, (1<<1), GPIO_ODR_HIGH, NULL}, {"PCH_SMI_L", LM4_GPIO_F, (1<<4), GPIO_ODR_HIGH, NULL}, - {"TOUCHSCREEN_RESET_L", LM4_GPIO_N, (1<<7), GPIO_OUT_LOW, NULL}, + {"TOUCHSCREEN_RESET_L", LM4_GPIO_N, (1<<7), GPIO_ODR_LOW, NULL}, {"PCH_ACOK", LM4_GPIO_M, (1<<6), GPIO_OUT_LOW, NULL}, #ifndef HEY_USE_BUILTIN_CLKRUN {"LPC_CLKRUN_L", LM4_GPIO_M, (1<<2), GPIO_ODR_HIGH, NULL}, -- cgit v1.2.1