XHCI pass pdevice->config_desc.config_value to xhci_pdevice_setup_set_config as the preferred configuration
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 3m43s
Build documentation / build-and-deploy (push) Successful in 3m39s

This commit is contained in:
2026-04-03 12:28:04 +02:00
parent 725cee6ffc
commit a8193797fa

View File

@@ -1229,7 +1229,7 @@ static void xhci_poll_setup_devices (struct xhci* xhci, uint64_t* lockflags) {
xhci_pdevice_setup_get_info (xhci, pdevice, lockflags);
xhci_pdevice_setup_get_config (xhci, pdevice, lockflags);
xhci_pdevice_setup_get_config_full (xhci, pdevice, lockflags);
xhci_pdevice_setup_set_config (xhci, pdevice, 0, lockflags);
xhci_pdevice_setup_set_config (xhci, pdevice, pdevice->config_desc.config_value, lockflags);
xhci_pdevice_setup_init_endpoints (xhci, pdevice, lockflags);
xhci_poll_setup_init_ifs (xhci, pdevice, lockflags);
}