summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiFiPhile <[email protected]>2026-03-06 15:44:26 +0100
committerHiFiPhile <[email protected]>2026-03-06 15:44:26 +0100
commit5817f0d2eb285d058a1aa416abaefe29cb858093 (patch)
tree8a31560eff085c4f19f83dc97201538f6d91112e
parent40ae5bddbe88c0bb5810efa354c43c082df6b640 (diff)
fix ci
Signed-off-by: HiFiPhile <[email protected]>
-rw-r--r--src/host/hub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/host/hub.c b/src/host/hub.c
index b32e996a0..ded851a09 100644
--- a/src/host/hub.c
+++ b/src/host/hub.c
@@ -228,7 +228,7 @@ uint16_t hub_open(uint8_t rhport, uint8_t dev_addr, tusb_desc_interface_t const
TU_ASSERT(drv_len <= max_len, 0);
tusb_desc_device_t desc_dev;
- tuh_descriptor_get_device_local(dev_addr, &desc_dev);
+ TU_ASSERT(tuh_descriptor_get_device_local(dev_addr, &desc_dev));
// Skip STT interface of MTT hub
if (desc_dev.bDeviceProtocol == 2 && itf_desc->bInterfaceProtocol == 1) {
hub_interface_t* p_hub = get_hub_itf(dev_addr);