From f238d75ba3977d5f2c5248593962d8e3efcaf57f Mon Sep 17 00:00:00 2001 From: Roman Leonov Date: Thu, 15 May 2025 11:31:26 +0200 Subject: [PATCH] refactor(ext_port): Remove the error verification, as error will be handled in ext hub driver --- components/usb/ext_port.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/usb/ext_port.c b/components/usb/ext_port.c index 5fedc49ae3..eb5f40d3ea 100644 --- a/components/usb/ext_port.c +++ b/components/usb/ext_port.c @@ -717,7 +717,7 @@ static void handle_port_state(ext_port_t *ext_port) switch (curr_state) { case USB_PORT_STATE_NOT_CONFIGURED: new_state = USB_PORT_STATE_POWERED_OFF; - ESP_ERROR_CHECK(port_request_status(ext_port)); + port_request_status(ext_port); need_handling = true; break; case USB_PORT_STATE_POWERED_OFF: