summaryrefslogtreecommitdiff
path: root/board/pico
diff options
context:
space:
mode:
Diffstat (limited to 'board/pico')
-rw-r--r--board/pico/board.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/board/pico/board.c b/board/pico/board.c
index fbb21be654..eaecf77f31 100644
--- a/board/pico/board.c
+++ b/board/pico/board.c
@@ -260,8 +260,12 @@ const struct tcpc_config_t tcpc_config[CONFIG_USB_PD_PORT_MAX_COUNT] = {
};
static void board_hpd_status(const struct usb_mux *me,
- mux_state_t mux_state)
+ mux_state_t mux_state,
+ bool *ack_required)
{
+ /* This driver does not use host command ACKs */
+ *ack_required = false;
+
/*
* svdm_dp_attention() did most of the work, we only need to notify
* host here.