refactor(ext_port): Remove the error verification, as error will be handled in ext hub driver

This commit is contained in:
Roman Leonov
2025-05-15 11:31:26 +02:00
parent 19ce9ed634
commit f238d75ba3

View File

@ -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: