summaryrefslogtreecommitdiff
path: root/zephyr/test/drivers/src/usb_mux.c
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/test/drivers/src/usb_mux.c')
-rw-r--r--zephyr/test/drivers/src/usb_mux.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/zephyr/test/drivers/src/usb_mux.c b/zephyr/test/drivers/src/usb_mux.c
index 42e65b0779..ff5d934d50 100644
--- a/zephyr/test/drivers/src/usb_mux.c
+++ b/zephyr/test/drivers/src/usb_mux.c
@@ -152,7 +152,8 @@ static bool proxy_fw_update_cap(void)
}
/** Proxy function which check calls from usb_mux framework to driver */
-static void proxy_hpd_update(const struct usb_mux *me, mux_state_t mux_state)
+static void proxy_hpd_update(const struct usb_mux *me, mux_state_t mux_state,
+ bool *ack_required)
{
int i = me->i2c_addr_flags;
@@ -163,7 +164,7 @@ static void proxy_hpd_update(const struct usb_mux *me, mux_state_t mux_state)
if (org_mux[i] != NULL &&
org_mux[i]->hpd_update != NULL) {
- org_mux[i]->hpd_update(org_mux[i], mux_state);
+ org_mux[i]->hpd_update(org_mux[i], mux_state, ack_required);
}
}