Changeset 68158 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jul 28, 2017 2:36:33 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 117247
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/ApplianceImplImport.cpp
r67249 r68158 3466 3466 /** @todo r=klaus add support for arbitrary USB controller types, this can't handle 3467 3467 * multiple controllers due to its design anyway */ 3468 /* usually the OHCI controller is enabled already, need to check */ 3468 /* Usually the OHCI controller is enabled already, need to check. But 3469 * do this only if there is no xHCI controller. */ 3469 3470 bool fOHCIEnabled = false; 3471 bool fXHCIEnabled = false; 3470 3472 settings::USBControllerList &llUSBControllers = config.hardwareMachine.usbSettings.llUSBControllers; 3471 3473 settings::USBControllerList::iterator it; … … 3473 3475 { 3474 3476 if (it->enmType == USBControllerType_OHCI) 3475 {3476 3477 fOHCIEnabled = true; 3477 break;3478 }3478 if (it->enmType == USBControllerType_XHCI) 3479 fXHCIEnabled = true; 3479 3480 } 3480 3481 3481 if (!f OHCIEnabled)3482 if (!fXHCIEnabled && !fOHCIEnabled) 3482 3483 { 3483 3484 settings::USBController ctrl;
Note:
See TracChangeset
for help on using the changeset viewer.