diff options
Diffstat (limited to 'board/wormdingler/board.c')
-rw-r--r-- | board/wormdingler/board.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/wormdingler/board.c b/board/wormdingler/board.c index 2acc1518aa..796409cb80 100644 --- a/board/wormdingler/board.c +++ b/board/wormdingler/board.c @@ -472,7 +472,8 @@ void board_tcpc_init(void) * HPD pulse to enable video path */ for (int port = 0; port < CONFIG_USB_PD_PORT_MAX_COUNT; ++port) - usb_mux_hpd_update(port, 0, 0); + usb_mux_hpd_update(port, USB_PD_MUX_HPD_LVL_DEASSERTED | + USB_PD_MUX_HPD_IRQ_DEASSERTED); } DECLARE_HOOK(HOOK_INIT, board_tcpc_init, HOOK_PRIO_INIT_I2C + 1); @@ -689,4 +690,3 @@ int battery_set_vendor_param(uint32_t param, uint32_t value) { return EC_ERROR_UNIMPLEMENTED; } - |