From 5fb2784fc4df774bdbefd11290fd7112b6b64bb2 Mon Sep 17 00:00:00 2001 From: Jett Rink Date: Fri, 18 May 2018 09:59:29 -0700 Subject: [PATCH] bip: fix uart interrupt type to both ITE only supports both edge triggers for GPB0 instead of just falling. BRANCH=none BUG=79942824 TEST=nothing is changing on how it configured. We are just changing the documentation in gpio.inc Change-Id: Ib7af54e360f4acaf410fb64b6747caf4d8729cec Signed-off-by: Jett Rink Reviewed-on: https://chromium-review.googlesource.com/1066310 Reviewed-by: Aaron Durbin --- board/bip/gpio.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/bip/gpio.inc b/board/bip/gpio.inc index 30614d2868..301861ae81 100644 --- a/board/bip/gpio.inc +++ b/board/bip/gpio.inc @@ -14,7 +14,7 @@ GPIO_INT(WP_L, PIN(I, 4), GPIO_INT_BOTH, switch_interrupt) /* EC_WP_ODL */ GPIO_INT(POWER_BUTTON_L, PIN(E, 4), GPIO_INT_BOTH, power_button_interrupt) /* MECH_PWR_BTN_ODL */ #ifdef CONFIG_LOW_POWER_IDLE /* Used to wake up the EC from Deep Doze mode when writing to console */ -GPIO_INT(UART1_RX, PIN(B, 0), GPIO_INT_FALLING, uart_deepsleep_interrupt) /* UART_SERVO_TX_EC_RX */ +GPIO_INT(UART1_RX, PIN(B, 0), GPIO_INT_BOTH, uart_deepsleep_interrupt) /* UART_SERVO_TX_EC_RX */ #endif /* USB-C interrupts */