summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--board/puff/board.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/board/puff/board.c b/board/puff/board.c
index 97967d6efd..0ea018ebc3 100644
--- a/board/puff/board.c
+++ b/board/puff/board.c
@@ -523,8 +523,7 @@ static void board_tcpc_init(void)
* With EFSv2, it is possible to be in RW without
* having reset the TCPC.
*/
- if (system_get_reset_flags() &
- (EC_RESET_FLAG_RESET_PIN | EC_RESET_FLAG_POWER_ON))
+ if (system_get_reset_flags() & EC_RESET_FLAG_POWER_ON)
board_reset_pd_mcu();
/* Enable TCPC interrupts. */
gpio_enable_interrupt(GPIO_USB_C0_TCPPC_INT_ODL);